More Zend Framework Fun

More Zend Framework Fun

Hold on Cowboy

This blog post is pretty old. Be careful with the information you find in here. It's likely dead, dying, or wildly inaccurate.

Sending email via Gmail

$config = array( 'ssl' => 'tls', 'port' => 587, 'auth' => 'login', 'username' => '[email protected]', 'password' => 'yourpassword' );

$gmail = new Zend_Mail_Transport_Smtp(‘smtp.gmail.com’, $config); $mail = new Zend_Mail(); $mail->addTo($this->to); $mail->setSubject($this->subject); $mail->setFrom($this->from); $mail->setBodyText($this->body);

$mail->send($gmail);

As you can see, you need to create an object for Gmail, then create an email object, then tell the email object to use the gmail object. It works great.