Good morning friends. I'm using webmail to send Emails from my Laravel application. The problems is, email are recieved in Yahoo and mailtrap, but gmail doen't get emails.
Asked
Active
Viewed 197 times
0
-
Did you check the spam folder? – apokryfos Dec 11 '22 at 08:29
-
Yes, I did. The problem is it doesn't show any errors. If it shows me an error, I might know what the problem is. – Abbas Ajorlou Dec 11 '22 at 08:34
2 Answers
0
IIRC, it's the regular behavior that you do not see the mail you application sent, in you Gmail-Outbox.
Besides, does the email get sent at all? Meaning, you receive no error. Is a mail being sent?
If not, check this:
- To use Gmail for sending mails, you have to allow "less secure apps".
- Check the configuration: For me, port 587 with tls works.

Chris Wolf
- 67
- 7
-
Thank you. I can send email to yahoo and mailtrap with the same configuration. I'm not using gmail to send Emails. – Abbas Ajorlou Dec 11 '22 at 08:33
0
The problem is gmail turned off less secure app,
https://support.google.com/accounts/answer/6010255?hl=en
so now its a challenge to send email through gmail smtp, you have to use service something like mailgun, or sendgrid or webmail.

Muhammad Sajidul Islam
- 197
- 8
-
I do use webmail to send Email. The problem is, my application send Email to yahoo, webmail or mailtrap, but not to Gmail. – Abbas Ajorlou Dec 11 '22 at 15:16
-
These docs might help https://support.google.com/mail/answer/6596#zippy=%2Crecipient-server-did-not-accept-our-requests https://support.google.com/a/answer/3726730 – Muhammad Sajidul Islam Dec 13 '22 at 05:22