I'd like to use Gmail smtp server to send email with Zend_Mail. I had this code
Zend_Mail::setDefaultTransport(new Zend_Mail_Transport_Smtp("smtp.googlemail.com", array(
"auth" => "login",
"username" => "[email protected]",
"password" => "mypassword",
"ssl" => "ssl",
"port" => 465
)));
but when I try to send an email it throws an Exception with message Connection refused.
Where I'm wrong?
Your params are wrong. Give it a shot with these:
$config = array(
'ssl' => 'tls',
'port' => 587,
'auth' => 'login',
'username' => '[email protected]',
'password' => 'mypassword'
);
$transport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $config);
Zend_Mail::setDefaultTransport($transport);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With