More Zend Framework Fun
Sending email via Gmail
$config = array( 'ssl' => 'tls', 'port' => 587, 'auth' => 'login', 'username' => 'youemail@gmail.com', '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.
Comments
Post new comment