Magento-将文件附加到发货电子邮件中?
如何将 pdf 文件附加到发货电子邮件中。这将与所有发货电子邮件中附加的静态文件相同(政府要求的条款)。
我已经研究了一些文件,例如 dev/lib/mail.php 和 app/code/core/Mage/Sales/Model/Email 也尝试查看一些Fooman 电子邮件附件扩展 的代码(它没有提供我想要的功能),但我不确定如何继续。
How can I attach a pdf file to the shipment-email. This wil be the same static file attached to alle shipment emails (gov. required terms).
I have looked into som of the files like dev/lib/mail.php and app/code/core/Mage/Sales/Model/Email also tried to look at some of the code of the Fooman email attachments extension (wich does not provide the functonality i want), but I'm unsure of how to proceed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样的事情。
Mage::getModel('core/email_template')->getMail()->createAttachment(...);
createAttachment(...)
方法位于Zend_Mail
类。Try something like this.
Mage::getModel('core/email_template')->getMail()->createAttachment(...);
createAttachment(...)
method is inZend_Mail
class.在 app/code/core/Mage/Core/Model/Email/Template.php 中的 send 方法中查找
并替换为
in app/code/core/Mage/Core/Model/Email/Template.php in send method find
and replace with