Checklist
[x] I have read intro post: About the Installation Issues category
[x] I have read the tutorials, help and searched for similar issues
[x] I provide relevant information about my server (component names and versions, etc.)
[x] I provide a copy of my logs and healthcheck
[x] I describe the steps I have taken to trouble shoot the problem
[x] I describe the steps on how to reproduce the issue
Hi I’m having issues with sending email invitations to new users.
The issue is as follows :
I use the ./cake EmailQueue.sender and i get this error : “Connection refused” && “Error 103 was not send”.
I’ve tried doing as I’ve seen in other posts ( cleaning cache, deleting /vendor, and doing compose install) and the issue remains.
I have my EmailTransport as follows :
// Email configuration.
'EmailTransport' => [
'default' => [
'host' => '127.0.0.1',
'port' => 587,
'username' => '********', // hidden for security reasons
'password' => '**********', // hidden for security reasons
// Is this a secure connection? true if yes, null if no.
'tls' => true,
//'timeout' => 30,
//'client' => null,
//'url' => null,
],
],
My port 587 is open and ssl set correctly. Can anybody give me a hand?