Laravel Gmail Configuration Error [duplicate] - php

This question already has answers here:
How to to send mail using gmail in Laravel?
(17 answers)
Closed 3 years ago.
I have been having this issue with Laravel email with Gmail and I have checked and reviewed so many questions on Stack Overflow but none still works in my case. I am using Laravel 5.4 and Xampp.
At first I thought it was my Xampp that cannot allow sending the emails but also when I move to the live mode(hosted it on a shared hosting) still have same issues there as well
But whenever I set the configuration to use Mailtrap, it's working and I know mailtap is just a development mail server, but whenever I use the Gmail it give me error such as "Expected response code 220 but got code "", with message """
Also when I try it on live mode it still gives same error.
My configuration file has the following
.env
MAIL_DRIVER=smtp
MAIL_HOST=gmail-smtp-msa.l.google.com (also tried smtp.gmail.com)
MAIL_PORT=587
MAIL_USERNAME=email#gmail.com
MAIL_PASSWORD=password
MAIL_ENCRYPTION=ssl
mail.php
<?php
return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'gmail-smtp-msa.l.google.com'),
'port' => env('MAIL_PORT', 587),
'from' => [
'address' => 'email#gmail.com',
'name' => 'Name Here',
],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME', 'email#gmail.com'),
'password' => env('MAIL_PASSWORD', 'password'),
'sendmail' => '/usr/sbin/sendmail -bs',
'markdown' => [
'theme' => 'default',
'paths' => [
resource_path('views/vendor/mail'),
],
],
];

Hey here is the solution
MAIL_DRIVER='smtp
MAIL_HOST='smtp.gmail.com'
MAIL_PORT=587
MAIL_USERNAME='sample#gmail.com'
MAIL_FROM_ADDRESS='sample#gmail.com'
MAIL_FROM_NAME='Some Name'
MAIL_PASSWORD='XXXXX'
MAIL_ENCRYPTION='tls'

As well as the configuration on the Laravel side, you need to enable "Less secure apps" in your Gmail account.
On the Laravel side, this guide shows the settings you need. Use smtp.gmail.com for host, and either 465/ssl or 587/tls.

Related

Symfony\Component\Mailer\Exception\TransportException with message 'Expected response code "250" but got an empty response.'

I'm using Google Workspace SMTP relay service to send emails from my Laravel app. It has been working well for over more than a year now, but I'm not sure what exactly stopped it from working.
When I try to send an email I get the following error:
>>> Illuminate\Support\Facades\Mail::to('myemail#gmail.com')->send(new App\Mail\CourseEnrolmentEmail($user, App\Course::first()));
// The error
Symfony\Component\Mailer\Exception\TransportException with message 'Expected response code "250" but got an empty response.'
I suspect it is related to my upgrade from Laravel 8 to Laravel 9, but not sure how to fix it.
My mail.php
'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,
],
My mail config
MAIL_DRIVER=smtp
MAIL_HOST=smtp-relay.gmail.com
MAIL_PORT=587
MAIL_ENCRYPTION=TLS
MAIL_FROM_NAME="My Name"
MAIL_FROM_ADDRESS=myaddress#workspace.com
I'm authenticating via IP, so the password and username fields are not required
My GSuite Gmail routing configuration
Note
In the above config, I have tried checking TLS and also changing Allowed senders to "Only Registered Apps users in my domains" but the problem still persists.
I have tried suggestions from
https://laracasts.com/discuss/channels/laravel/laravel-swift-mailer-exception-expected-response-code-250-but-got-an-empty-response-using-gmail-smtp-relay-database-queue-driver
Laravel 9 - Infomaniak : Expected response code "250" but got code "550", with message "550 5.7.1 Sender mismatch"
https://stackoverflow.com/a/43283422/11752623
https://www.cubebackup.com/blog/how-to-use-google-smtp-service-to-send-emails-for-free/ Method 3
All of them were not successful. I appreciated your help in solving this issue.
Found a solution,
I went to vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php under the assertResponseCode method. I echoed the response which showed the following:
421 4.7.0 Try again later, closing connection. (EHLO) r29-200a50c01d0000xxxxxxxxxxxx87edb.28 - gsmtp
More details about the error from google documentation
The issue was that Swift Mailer was using 127.0.0.1 as the domain for sending the mail which was unknown to Gmail.
So, the solution was to set my domain name in the config/mail.php file
'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,
'local_domain' => env('MAIL_EHLO_DOMAIN', 'mydomain.com')//this line here
],
More info:
https://insights.rytass.com/gmail-smtp-relay-421-4-7-0-try-again-later-closing-connection-ehlo-cfcdac3cf9c7
https://serverfault.com/questions/929559/postfix-error-421-4-7-0-try-again-later-closing-connection-ehlo

Laravel error when sending custom email address using smtp server

I have a project that has a module that sends email from request. Im using beautymail package for the email template. I can send an email using a gmail account, but there is this email that I get from my client that has a custome email address in it. Like this xx.xxxxx#propnex.sg, they said that the email is a smtp server. So I tried configuring my .env and other configuration files in laravel. But I get this error upon sending Connection could not be established with host mail.propnex.sg :stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages: error:1408F10B:SSL routines:ssl3_get_record:wrong version number Could someone tell me why Im getting this error and what should I do to get rid of this? Thanks a lot
.env config
MAIL_DRIVER=smtp
MAIL_HOST=mail.propnex.sg
MAIL_PORT=587
MAIL_USERNAME=xx.xxxxx#propnex.sg
MAIL_PASSWORD=xxxxxxxx
MAIL_ENCRYPTION=ssl
Mail.php
'from' => [
'address' => 'xx.xxxxx#propnex.sg',
'name' => 'Propnex',
],
'reply_to' => ['address' => 'xx.xxxxx#propnex.sg', 'name' => 'Propnex'],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'port' => env('MAIL_PORT', 587),
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'mail.propnex.sg'),
I just solved it by making a small changes in my .env and mail.php file like this
MAIL_ENCRYPTION=""
'encryption' => env('MAIL_ENCRYPTION', ''),
Tell me what are the drawbacks in this unsecured/alternative answer of mine. I want feedbacks. Thanks a lot.
You're using SSL (MAIL_ENCRYPTION=ssl) so you need to change MAIL_PORT=465 in .env file.
SSL VS TLS encryption
for TLS use Port : 587
for SSL use Port : 465
You might have crossed check every bit of line you have. The issue is with mailtrap.io it self. If your configuration is actually like this below.
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=31466861b7bXXX
MAIL_PASSWORD=fe2b6503618XXX
MAIL_ENCRYPTION=null
I tested with two separate framework to proof this error. check the SMTP credentials try resetting the credentials.
You are setting mail encryption as tls in mail.php and on the other hand in the env file
you are setting it to ssl. Try setting it the same in both the files.
But i would recommend that you skip the certificate.
You can skip verification of the ssl certificate by using the code below in the mail.php file:
'stream' => [
'ssl' => [
'allow_self_signed' => true,
'verify_peer' => false,
'verify_peer_name' => false,
],
],
in you .env file
change this
'encryption' =>ssl
line into
'encryption' =>tls
and make sure you have some value for MAIL_FROM_ADDRESS also .
this worked for both localhost & server environments fine.

Laravel ElasticEmail Config

I'm struggling with configuring Laravel email. This is my first Laravel project, I am WordPress Web Developer.
And this is the error code I'm getting.
Expected response code 250 but got code "", with message ""
What am I doing wrong?
This is .env file
MAIL_DRIVER=smtp
MAIL_HOST=smtp.elasticemail.com
MAIL_PORT=2525
MAIL_USERNAME=email#managedcloudhostingemail.com
MAIL_PASSWORD=password
MAIL_ENCRYPTION=TLS
This is mail.php in config folder
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.elasticemail.com'),
'port' => env('MAIL_PORT', 2525),
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello#bummit.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',
'markdown' => [
'theme' => 'default',
'paths' => [
resource_path('views/vendor/mail'),
],
],
I've tried almost every possible combination of ports, ssl, tls and can't figure out why email doesn't work. Email should be sent to new user registration, and I get this error, while user gets saved to database.
I have actuallly got wrong credentials from support, and sonce we're using Cloudways and have subscribed to Elastic Email through them, I had to use API key as username and password. Then everything worked like a charm.
I think you would need some more code to achieve this with ElasticMail.
Take a look at this wrapper, it allows you to easily use your ElasticSearch account.
You might want to use API instead of SMTP, as it is a better way to do that in the long term.
We constantly work on adding new plugins to most popular tools so a ready made solution will show up. I can't give you an exact date just yet.

Using mailgun on laravel 5.2 - failed to authenticate my sandbox account

I'm using Laravel 5.2 that has mailgun integrated. Was trying to send out email via SMTP but couldn't succeed because of the error:
Failed to authenticate on SMTP server with username
"postmaster#sandboxe56d93c917b144e98a4f07d1dbf2683a.mailgun.org" using
3 possible authenticators
I'm developing the app on my localhost with virtual host set up (i.e. app.dev.local) so I have to use the sandbox account to do all the testing.
These are the laravel's config/mail.php:
'driver' => env('MAIL_DRIVER', 'mailgun'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'from' => ['address' => null, 'name' => null],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => 'postmaster#sandboxe56d93c917b144e98a4f07d1dbf2xxxx.mailgun.org',
'password' => 'mypassword'
service.php's configurations
'mailgun' => [
'domain' => 'sandboxe56d93c917b144e98a4f07d1dbf2xxxx.mailgun.org',
'secret' => 'key-63sztbx99h-qdhp7j3-gp6346jsxxxx',
],
Everything looks good as I copied directly from my mailgun dashboard for the sandbox account, but the app still can't send out email due to failed authentication.
Does anybody know what is happening here?
Try with port 2525 maybe? You can edit it in the config/mail.php file where 587 is currently or through setting it in your .env file:
MAIL_PORT=2525
small correction
Check MAIL_DRIVER, MAIL_HOST, MAIL_PORT values in .env file. If you have this parameters set in .env file, function env call will take the values from that localization.

Connection could not be established with host smtp.gmail.com Laravel

I am trying to send a mail to my email-id. I have followed all the steps that might required to send a mail.
But it keeps on coming 2 errors
Connection could not be established with host smtp.gmail.com [A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.#10060]
Maximum execution time of 30 seconds exceeded.
my controller is
public function contact()
{
Mail::send('clientinfo.contact',['name' => 'shweta'],function($message){
$message->to('myemail#gmail.com','Some Name')->subject('Welcome!')->from('otheremail#example.com');
});
mail.php file :
return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'from' => ['address' => 'someone#example.com', 'name' => 'Some One Sender'],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
];
Please help me through this.
Make sure you install Guzzle to your project by adding the following line to your composer.json file:
"guzzlehttp/guzzle": "~5.3|~6.0"
and editing your .env file with real email-id and password. Also, enable, less secure apps for that email-id as told by #Bharat Geleda
then your above code will run properly.
This is what I did.
I enabled two step verification on may gmail account
created separate apps password for my app here (screenshot below) (https://security.google.com/settings/security/apppasswords)
I that password into my laravel .env file and it worked.
screenshot
just select "Other(custom name)" on the "select app" and it will generate a password for you.
Use the MAIL_PORT=587 instead of the default mail_port in your .env file.

Categories