Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 2 down vote accepted

the quickest and shortest way:

$email->viewVars(compact('purchase'));

it will pass the var $purchase as the same key 'purchase' into the email viewVars and is exactly what you need here.

you can also quickly add more variables this way:

$html = 'foo';
$url = '/my/url';

$email->viewVars(compact('purchase', 'html', 'url'));
share|improve this answer

Use this:

$email->viewVars(array('purchase' => $purchase));
share|improve this answer
This one works as well! – alieninlondon Sep 30 '12 at 12:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.