Guest User

Untitled

a guest
Jul 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php echo $content_for_layout; ?>
  2.  
  3. Dear <?php echo $user['User']['firstname'] ?>,
  4. Thank you for your order.
  5.  
  6. <?php
  7. function _sendNewUserMail($id) {
  8. $User = $this->User->read(null,$id);
  9. $this->Email->to = $User['User']['email'];
  10. $this->Email->subject = 'Order Confirmation';
  11. $this->Email->replyTo = 'support@example.com';
  12. $this->Email->from = 'Cool Web App <app@example.com>';
  13. $this->Email->template = 'new_order';
  14. $this->set('User', $User);
  15. $this->Email->send();
  16. }
  17. ?>
Add Comment
Please, Sign In to add comment