phpmailer从动态网址附加pdf

时间:2013-07-16 19:00:54

标签: email phpmailer email-attachments php

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

PDF网址就像

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

我需要将此动态 pdf网址附加到我的电子邮箱中。 我的电子邮件发送服务网址就像

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

我需要一些帮助

1 个答案:

答案 0 :(得分:6)

要在这里得到答案:

由于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超出其内存分配。