skip to Main Content

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.

2

Answers


  1. 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.
    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search