Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. public function sendAction()
  3. {
  4. try
  5. {
  6. $mail = new Zend_Mail();
  7. $mail->send();
  8. }
  9. catch (Exception $e)
  10. {
  11. Mage::getSingleton('core/session')->addError('Error sending mail');
  12. }
  13. $this->loadLayout();
  14. $this->renderLayout();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement