I am trying to set the variable $purchase to use in my email template per the following configuration:
App::uses('CakeEmail', 'Network/Email');
$email = new CakeEmail();
$email->emailFormat('html');
$email->template('new_order_email', 'default');
$email->from(array('info@mydomain.com' => 'A Great Site'));
$email->to($this->request->data['email']);
$email->subject('Order details');
$email->viewVars($purchase);
$email->send();
But this doesn't work when I attempt to use the $purchase variable in the template. Instead, the email which is sent contains the following error:
Notice (8): Undefined variable: purchase [APP/View/Emails/html/new_order_email.ctp, line 2]
This indicates that $purchase is not available, even though I did set that variable using the CakeEmail:viewVars(); function. Any ideas why I am having this problem?