Cakephp provides simple way to send email. The templates for emails resides in a view directory folder called emails. Email views can also use layouts.
$Email = new CakeEmail();
$Email->template('myemail', 'mylayout')
->emailFormat('html')
->to('xyz@domain.com')
->from('abc@domain.com')
->send();
This would use app/View/Emails/html/myemail.ctp for the view, and app/View/Layouts/Emails/html/mylayout.ctp for the layout.
0 Comment(s)