I'm using sendTransactional() to send emails programmatically. All working fine besides the following line in the email template is not included

  {{inlinecss file="email-inline.css"}}

Any fixes?

有帮助吗?

解决方案

I found it out. It has to include ->setDesignConfig()

So the following code will include CSS file when sending out emails with sendTransactional().

    Mage::getModel('core/email_template')
        ->setDesignConfig(array('area' => 'frontend', 'store' => $storeId))
        ->sendTransactional($templateId, $sender, $recepientEmail, $recepientName, $vars, $storeId)
    ;
许可以下: CC-BY-SA归因
scroll top