007lifestyle
New member
- Feb 15, 2021
- 21
- 3
- 3
Anyone else having issues with SMTP... doesn't seem to work for me
Trust me I configured everything as it should be... sometimes the email gets delivered but I still get errors from the system.Check your settings, of course it won't work if you don't configure it correctly.
show you server logsTrust me I configured everything as it should be... sometimes the email gets delivered but I still get errors from the system.
Nobody can help if you don't tell me what the error is. Write here what the error is.Trust me I configured everything as it should be... sometimes the email gets delivered but I still get errors from the system.
I get "Connection Timed out" errorNobody can help if you don't tell me what the error is. Write here what the error is.
All it takes is your server logs, share what your server logs sayI get "Connection Timed out" error
Here's the logAll it takes is your server logs, share what your server logs say
using SMTP email from what your server or mailgun?Here's the log
I'm using smtp from my server. But I also created an account with Sendinblue just to try out their SMTP and that gives me "Connection could not be established with host smtp-relay.sendinblue.com :stream_socket_client(): unable to connect to ssl://smtp-relay.sendinblue.com:587 (Connection refused) " errorusing SMTP email from what your server or mailgun?
I'm using smtp from my server. But I also created an account with Sendinblue just to try out their SMTP and that gives me "Connection could not be established with host smtp-relay.sendinblue.com :stream_socket_client(): unable to connect to ssl://smtp-relay.sendinblue.com:587 (Connection refused) " error
I'm trying on a live server... I made a few language file changes on localhost then uploaded to a live serverlooks like you are using lokalhost, have you tried it on the live server
try uploading the default language fileI'm trying on a live server... I made a few language file changes on localhost then uploaded to a live server
'smtp' => [
'transport' => 'smtp',
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
],
// change encryption to ssl and port to 465
'smtp' => [
'transport' => 'smtp',
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 465),
'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
],
Just tried, doesn't work "Connection Timed out"config-> mail.php
Code:'smtp' => [ 'transport' => 'smtp', 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 'port' => env('MAIL_PORT', 587), 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, ], // change encryption to ssl and port to 465 'smtp' => [ 'transport' => 'smtp', 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 'port' => env('MAIL_PORT', 465), 'encryption' => env('MAIL_ENCRYPTION', 'ssl'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, ],
I tweaked the settings a bit, using port 587 and tsl... now the emails get delivered but I still get "Timed out" error at my end.Then probably your host is blocking mail ports as you're calling it with fqdn
Or your request isn't considered safe enough and is being throttled
Try a small script for smtp with same config and see if it pass trough
Happened to me, solved it by changing my PHP versioninstalled 2.2, tried to change my profile avatar and profile cover image, but nothing changes.
avatar shows broken image link, cover image just grey.
Checked in 'theme' to change 'default avatar' just incase but even that shows broken image link...
any ideas?