Advertisement
Guest User

Untitled

a guest
Feb 10th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function SendOfferteFormulier($data, $form) {
  2.  
  3. //Set data
  4. $From = "test@email.nl";
  5.  
  6.  
  7.  
  8.  
  9. $To = "test@mymail.nl";
  10.  
  11. $Subject = "Offerte aanvraag";
  12.  
  13. $email = new Email($From, $To, $Subject);
  14. //set template
  15. $email->setTemplate('OfferteFormulier');
  16. //populate template
  17. $email->populateTemplate($data);
  18. //send mail
  19. $email->send();
  20. //return to submitted message
  21. Director::redirect($this->Link("?success=1"));
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement