"send email using gmail smtp in zend? " Code Answer

3

this is from our application.ini

resources.mail.transport.type = zend_mail_transport_smtp
resources.mail.transport.host = "smtp.gmail.com"
resources.mail.transport.port = 587
resources.mail.transport.auth = "login"
resources.mail.transport.username = "email@address.com"
resources.mail.transport.password = "password"
resources.mail.transport.ssl = "tls"

and it "just works (tm)"!

By Chris Olsen on January 2 2022

Answers related to “send email using gmail smtp in zend? ”

Only authorized users can answer the Search term. Please sign in first, or register a free account.