Hi vshare2,
Thank you so much for your reply! I really appreciate it. :-)
I do have one more question: Do you know how I could pass the login credentials for Authenticated SMTP?
Thank You.
Hi vshare2,
Thank you so much for your reply! I really appreciate it. :-)
I do have one more question: Do you know how I could pass the login credentials for Authenticated SMTP?
Thank You.
Actually I just figured it out.
I needed to add one extra line to your code for authenticated SMTP (highlighted in red):
Thank you so much for your help! This is resolved now.Code:Zend_Loader::loadClass('Zend_Mail'); Zend_Loader::loadClass('Zend_Mail_Transport_Smtp'); $config = array('ssl' => 'tls', 'port' => 587, 'auth' => 'login', 'username' => '[email protected]', 'password' => '123abc'); $tr = new Zend_Mail_Transport_Smtp('smtp.domain.com', $config);![]()
Bookmarks