我正在使用Prestashop 1.5.4.1,我需要将存储在我的服务器上的新文件附件(.docx文档)添加到订单确认电子邮件中。我该怎么办?
谢谢你的时间 诚挚 约翰
答案 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
);