1

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

真诚地感谢您的时间约翰

4

1 回答 1

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
);
于 2014-09-23T09:11:11.977 回答