Prestashop从html2pdf发送邮件附件pdf

时间:2018-01-11 09:05:00

标签: php email pdf prestashop html2pdf

一切都在标题中,但更确切地说:

我对Cart.php进行了覆盖,在一个函数中我想发送一封带有作为附件生成的pdf的邮件。

    $file_attachement['content'] = $voucher->output("useless.pdf", 'E');
    $file_attachement['name'] = 'Voucher.pdf';
    $file_attachement['mime'] = 'application/pdf';

    Mail::Send(
        (int)Context::getContext()->language->id,
        'voucherSend',
        "blabla.",
        array(),
        $customer->email,
        $customer->firstname.' '.$customer->lastname,
        $file_attachement,
        null, _PS_MAIL_DIR_
    );

(通过html2pdf生成$voucher

邮件已发送,但遗憾的是没有附件。但是,如果我将输出选项从E更改为I,应该将pdf直接发送到用户浏览器,它就像魅力......

我真的不明白我错在哪里,如果......

1 个答案:

答案 0 :(得分:0)

尝试使用Tools :: file_get_contents('useless.pdf')代替$ voucher->输出,并检查您是否在正确的位置发送此数据