Quantcast
Channel: stoimen's web log » Web 2.0
Viewing all articles
Browse latest Browse all 10

Zend_Mail with GMail

$
0
0

Zend_Mail and GMail
You know how to setup Zend_Mail with SMTP, but you don’t know how to set it up with GMail! Here’s how to do it. Just follow the instructions ;)

$mailTransport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', array(
    'auth'     => 'login',
    'username' => 'xxxxxx@gmail.com',
    'password' => 'passxxxxx',
    'port'     => '587',
    'ssl'      => 'tls',
));
Zend_Mail::setDefaultTransport($mailTransport);

Related posts:

  1. Send Mail with Zend Framework
  2. Send Html Mails with Zend_Mail
  3. Send Authenticated POST Request with Zend_Http_Client
  4. Zend Framework: Connect MySQL

Viewing all articles
Browse latest Browse all 10

Trending Articles