Prestashop订单确认电子邮件附件(条款和条件)

时间:2014-01-28 13:15:32

标签: email attachment prestashop confirmation-email

我正在使用Prestashop 1.5.4.1,我需要将存储在我的服务器上的新文件附件(.docx文档)添加到订单确认电子邮件中。我该怎么办?

谢谢你的时间 诚挚 约翰

1 个答案:

答案 0 :(得分:0)

 Mail::Send(
    5,
   'new_order',
   'New Order',
   array('{provider}' => 'Provider', '{title}' => 'My ePortal'),
   'provider@myportal.com',
   array('content' => $content, 'name' => $file, 'mime' => 'application/xml'),<------ attachment
   null,
   null
   null,
   _PS_MAIL_DIR_,
   false,
   (int)$order_id
);