Hello,
A dev in the team has create an SMTP mail server with this configuration :
Tested from Thunderbird, it works fine.
But used from the Laravel application, I get this error.
Connection could not be established with host \"ssl://mx.xxxxx.com:587\": stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages:\nerror:0A00010B:SSL routines::wrong version number
To be used with Laravel, I have added this configuration in the .env file.
MAIL_MAILER=smtp
MAIL_HOST=mx.xxxxx.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=xxxxxxxxxxx
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME=Yggdra
Can you help me what I should check ?
Thanks for your help.
V