1

我正在尝试编写一个 PHP 脚本来生成 PDF 并通过电子邮件发送它。我的 PDF 生成器可以完美地作为一个独立的 URL,但由于某种原因,当我尝试将脚本通过电子邮件发送到生成的 PFD 时,无法打开收到的文件。这是代码:

include_once('Mail.php');
include_once('Mail/mime.php');

$attachment = "cache/form.pdf";

// vvv This line seems to be where the breakdowns is vvv
file_put_contents( $attachment, file_get_contents( "http://www.mydomain.com/generator.php?arg1=$arg1&arg2=$arg2" ) );

$message = new Mail_mime();
$message->setTXTBody( $msg );
$message->setHTMLBody( "<html><body>$msg</body></html>" );
$message->addAttachment( $attachment );
$body = $message->get();

$extraheaders = array(  "From"      => $from,
            "Cc"        => $cc,
            "Subject"   => $sbj );

$mail = Mail::factory("mail");

$headers = $message->headers( $extraheaders );
$to = array(    "Jon Doe <jon@mydomain.com>",
        "Jane Doe <jane@mydomain.com>" );
$addresses = implode( ",", $to );

if( $mail->send($addresses, $headers, $body) )
    echo    "<p class=\"success\">Successfully Sent</p>";
else
    echo    "<p class=\"error\">Message Failed</p>";

unlink( $attachment );

我标记的行确实在缓存文件夹中生成了一个 PDF 文件,但它不会打开,所以这似乎是一个问题。但是,当我尝试附加一个已经存在的 PDF 文件时,我遇到了同样的问题。我也试过$message->addAttachment( $attachment, "Application/pdf" );了,好像没什么区别。

4

2 回答 2

1

通常,Web 服务器目录应该锁定写权限。这可能就是您遇到问题的原因file_put_contents('cache/form.pdf')

// A working example: you should be able to cut and paste, 
// assuming you are on linux.
$attachment = "/var/tmp/Magick++_tutorial.pdf";
file_put_contents($attachment, file_get_contents( 
     "http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf"));

尝试将保存 pdf 的位置更改为允许每个人都具有读写权限的目录。还要确保此目录不在您的 Web 服务器上。

也尝试改变以下三件事

$message = new Mail_mime();

// you probably don't need this the default is
// $params['eol'] - Type of line end. Default is ""\r\n""
$message = new Mail_mime("\r\n");

$extraheaders = array(  
       "From"      => $from,
       "Cc"        => $cc,
       "Subject"   => $sbj,
     );

$extraheaders = array(  
        "From"      => $from,
        "Cc"        => $cc,
        "Subject"   => $sbj,
        'Content-Type' => 'text/html'
    );

$message->addAttachment($attachment);

// the default second argument is $c_type = 'application/octet-stream'
$isAttached = $message->addAttachment($attachment, 'aplication/pdf');
if ($isAttached !== true) {
    // an error occured
    echo $isAttached->getMessage();
}

你总是想确保你打电话

$message->get();

$message->headers($extraheaders);

或者整件事都行不通

于 2013-12-16T22:02:15.280 回答
0

我很确定这一定是阻止 file_get_contents() 的 ini 问题。但是我想出了一个更好的解决方案。我修改了 generator.php 文件并将其转换为函数定义。所以我有:

include_once('generator.php');
$attachment = "cache/form.pdf";
file_put_contents( $attachment, my_pdf_generator( $arg1, $arg2 ) );
...
$message->addAttachment( $attachment, "application/pdf" );

这样我就不需要先写文件了。它工作得很好(虽然我仍然对 Outlook/Exchange Server 有一些小问题,但我认为这在很大程度上是不相关的问题)。

于 2013-12-18T16:18:50.030 回答