Magento-将文件附加到发货电子邮件中?

发布于 2024-10-14 05:04:24 字数 329 浏览 2 评论 0原文

如何将 pdf 文件附加到发货电子邮件中。这将与所有发货电子邮件中附加的静态文件相同(政府要求的条款)。

我已经研究了一些文件,例如 dev/lib/mail.phpapp/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惜醉颜 2024-10-21 05:04:24

尝试这样的事情。

Mage::getModel('core/email_template')->getMail()->createAttachment(...);

createAttachment(...) 方法位于Zend_Mail 类。

Try something like this.

Mage::getModel('core/email_template')->getMail()->createAttachment(...);

createAttachment(...) method is in Zend_Mail class.

满身野味 2024-10-21 05:04:24

在 app/code/core/Mage/Core/Model/Email/Template.php 中的 send 方法中查找

$mail->setSubject('=?utf-8?B?' . base64_encode($this->getProcessedTemplateSubject($variables)) . '?='); 
$mail->setFrom($this->getSenderEmail(), $this->getSenderName());

并替换为

if (isset($variables['attachment'])){   
            $attfile = file_get_contents($variables['attachment']); 
            $attfile = fopen($variables['attachment'],'rb');    
            $att = $mail->createAttachment($attfile);   
            //$att->type = 'plain/text';    
            $att->disposition = Zend_Mime::DISPOSITION_ATTACHMENT;  
            $att->filename = $variables['attname']; 
        }   
        $mail->setSubject('=?utf-8?B?' . base64_encode($this->getProcessedTemplateSubject($variables)) . '?=');

        $mail->setFrom($this->getSenderEmail(), $this->getSenderName());

in app/code/core/Mage/Core/Model/Email/Template.php in send method find

$mail->setSubject('=?utf-8?B?' . base64_encode($this->getProcessedTemplateSubject($variables)) . '?='); 
$mail->setFrom($this->getSenderEmail(), $this->getSenderName());

and replace with

if (isset($variables['attachment'])){   
            $attfile = file_get_contents($variables['attachment']); 
            $attfile = fopen($variables['attachment'],'rb');    
            $att = $mail->createAttachment($attfile);   
            //$att->type = 'plain/text';    
            $att->disposition = Zend_Mime::DISPOSITION_ATTACHMENT;  
            $att->filename = $variables['attname']; 
        }   
        $mail->setSubject('=?utf-8?B?' . base64_encode($this->getProcessedTemplateSubject($variables)) . '?=');

        $mail->setFrom($this->getSenderEmail(), $this->getSenderName());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文