Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I needed to create a specific email template sent using an observer running from a cron.
When I received the email, I don't have the value of the provided variables.

$vars = array(
    'product'  => $product,
    'customer' => $customer
);

$mailTemplate->sendTransactional(
    $mailId,
    'general',
    $customer->getData('email'),
    $customer->getData('firstname') . ' ' . $customer->getData('lastname'),
    $vars
);

$product & $customer are both object from a Model Collection (Product_Collection & Customer_Collection).

In my template, I'm trying to access them like this:

Dear {{htmlescape var=$customer.name}},
<p>Check {{htmlescape var=$product.name}}</p>

Any ideas?

By the way, how can I construct url to my product? (to let the customer click on a link to view the product)

share|improve this question
1  
clap your hands and start to debug if your variables are in place when the actual filter is applied. Best thing to use is xdebug.org and used together with your php ide you can start a debugging session – Anton S Apr 4 '11 at 11:43

1 Answer

Try it without the dollar signs on your variables. Looking at the default email templates, they do not appear to contains those dollar symbols.

Hope that helps!

Thanks, Joe

share|improve this answer
Thank you, but I tried both, and none worked. – JohnT Apr 4 '11 at 18:51

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.