
More Zend Framework Fun
Hold on Cowboy
This blog post is pretty old. Be careful with the information you find in here. The Times They Are A-Changin'
Sending email via Gmail
$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.