Advertisement
Guest User

Untitled

a guest
Dec 24th, 2013
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public function SendContactForm($data, $form) {
  2. $From = $data['Email'];
  3. $To = $this->Mailto;
  4. $Subject = 'Mail via Contactform';
  5. $email = new Email($From, $To, $Subject);
  6. $email->setTemplate('ContactEmail');
  7. $email->populateTemplate($data);
  8. $email->send();
  9. $this->redirect($this->Link("?succes=1"));
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement