Magento - 是否可以将文件附加到交易电子邮件中?
我需要将文件附加到交易电子邮件中。基本上我有一个 cron 作业,可以生成报告并需要通过电子邮件发送给管理员用户。
我希望存在这样的东西:
Mage::getModel('core/email_template')
->setDesignConfig(array('area'=>'frontend', 'store'=>1))
->createAttachment($file)
->sendTransactional($templateID, $sender, $email, “Admin", $vars);
提前感谢您的帮助。
I need to attach a file to a transactional email. Basically I have a cron job that generates a report and needs to it email to an admin user.
I was hoping something like this exists:
Mage::getModel('core/email_template')
->setDesignConfig(array('area'=>'frontend', 'store'=>1))
->createAttachment($file)
->sendTransactional($templateID, $sender, $email, “Admin", $vars);
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现magento 使用zend_mail 框架。您可以调用getMail函数访问该框架来添加附件。
http://framework.zend.com/manual/en/zend.mail .attachments.html
示例
I found that magento uses the zend_mail frame work. You can call the getMail function to access this framework to add an attachement.
http://framework.zend.com/manual/en/zend.mail.attachments.html
Example