phpmailer从动态url中附加pdf



我正在使用phpmailer发送电子邮件。我有生成pdf的网络服务。此pdf不会上传或下载到任何地方。

PDF url类似

http://mywebsite/webservices/report/sales_invoice.php?company=development&sale_id=2

我需要将此动态pdf url附加到我的电子邮件中。我的电子邮件发送服务url类似

http://mywebsite/webservices/mailservices/sales_email.php

下面是我用来附加pdf的代码。

$pdf_url = "../report/sales_invoice.php?company=development&sale_id=2";
$mail->AddAttachment($pdf_url);

正在发送消息,但未附加pdf。它给出了以下信息。

无法访问文件:/report/sales_invoice.php?company=development&sale_id=2

我需要一些帮助

在这里找到答案:

由于phpmailer不会自动获取远程内容,因此您需要自己完成。

所以你去:

// we can use file_get_contents to fetch binary data from a remote location
$url = 'http://mywebsite/webservices/report/sales_invoice.php?company=development&sale_id=2';
$binary_content = file_get_contents($url);
// You should perform a check to see if the content
// was actually fetched. Use the === (strict) operator to
// check $binary_content for false.
if ($binary_content === false) {
   throw new Exception("Could not fetch remote content from: '$url'");
}
// $mail must have been created
$mail->AddStringAttachment($binary_content, "sales_invoice.pdf", $encoding = 'base64', $type = 'application/pdf');
// continue building your mail object...

其他需要注意的事项:

根据服务器响应时间的不同,脚本可能会遇到时间问题。此外,获取的数据可能相当大,可能会导致php超出其内存分配。

相关内容

  • 没有找到相关文章

最新更新