Guest User

Untitled

a guest
Dec 11th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. $mail = new Zend_Mail('utf-8');
  3.  
  4. $mail->setBodyText($this->body)
  5. ->setFrom($this->from_email, $this->from_name)
  6. ->addTo($this->to)
  7. ->setSubject($this->subject);
  8. $transport = new Zend_Mail_Transport_Smtp($this->transport);
  9.  
  10. $mail->send($transport);
Add Comment
Please, Sign In to add comment