I’m setting up Omeka-S for the first time and I’m working on the mail configuration. I’m getting closer, but when trying to send a password reset email, I get:
Laminas\ServiceManager\Exception\ServiceNotCreatedException
Service with name “Omeka\Mailer” could not be created. Reason: The option “mail” does not have a callable “setMail” (“setmail”) setter method which must be defined
I have authorization to use an smtp server and I’m using these options:
'mail' => [
'transport' => [
'type' => 'smtp',
'options' => [
'name' => 'smtp.utk.edu',
'host' => '160.36.241.242',
'port' => '25', // 465 for 'ssl', and 587 for 'tls'
'connection_class' => 'smtp', // 'plain', 'login', or 'crammd5'
'connection_config' => [
'username' => null,
'password' => null,
'ssl' => 'tls', // 'ssl' or 'tls'
'use_complete_quit' => true,
],
What am I missing here? Thanks for any clues.