Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 17th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $config = array ('auth' => 'login', 'username' => 'user@***', 'password' => '***' );
  2.         $transport = new Zend_Mail_Transport_Smtp ( 'smtp.***', $config );
  3.         $tr = new Zend_Mail_Transport_Smtp ( 'smtp.***' );
  4.        
  5.         Zend_Mail::setDefaultTransport ( $tr );
  6.         $mail = new Zend_Mail ();
  7.         $mail->setSubject ( $subject );
  8.         $mail->setFrom ( $fromEmail, $fromName );
  9.         $mail->addTo ( $toEmail, $toName );
  10.         $mail->setBodyHtml ( $bodyText );
  11.         $mail->send ();