我正在使用PHP作为服务器端和jQuery框架作为客户端的Web应用程序。
该应用程序的一个场景是发送附有pdf文件的电子邮件我正在使用PHPMailer和Dompdf库进行此操作。
我在文件名sendMail
中创建了一个名为send.php
的函数,接受4个参数(接收者电子邮件,主题,数据,电子邮件号码),最后一个参数是因为我有5个不同的电子邮件可能会被发送根据情况和数据参数,数据将在html电子邮件正文中呈现。
问题是当我从send.php调用该函数时,它按预期工作,发送的电子邮件和pdf文件已创建并附加到电子邮件中。
但是当我在任何其他文件中需要send.php
并调用sendMail
函数时,我只收到没有任何pdf文件的电子邮件,并且该文件甚至没有在服务器上生成或保存。
send.php
<?php
require_once 'dompdf/autoload.inc.php';
// reference the Dompdf namespace
use Dompdf\Dompdf;
require 'PHPMailerAutoload.php';
$body = "test message";
sendMail('peter@w34.co','MLS mail',$body,5);
function sendMail($email,$subject,$body,$index){
$mail = new PHPMailer;
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // SMTP authentication
$mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for GMail
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->Port = 587; // SMTP Port
$mail->Username = "peterwilson.intake34@gmail.com"; // SMTP account username
$mail->Password = "Password"; // SMTP account password // TCP port to connect to
$mail->From = 'peter@example.com';
$mail->FromName = 'Wilson';
$mail->addAddress($email); // Add a recipient
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = $subject;
$mail->Body=$body;
// instantiate and use the dompdf class
$dompdf = new Dompdf();
$dompdf->loadHtml($body);
// Render the HTML as PDF
$dompdf->render();
$output = $dompdf->output();
$file_to_save= "../work-orderes/file.pdf";
file_put_contents($file_to_save, $output);
$mail->addAttachment('../work-orderes/file.pdf');
if(!$mail->send()) {
// echo $mail->ErrorInfo;
} else {
return 1;
}
}
?>
save.php
<?php
require("sendSmtp/send.php");
session_start();
$body = "Hello World!";
sendMail('peter@w34.co','MLS mail',$body,5);
?>
有关为什么Dompdf在从任何其他文件调用时无效的任何建议??
我尝试了什么
答案 0 :(得分:0)
我终于解决了!
调试后我发现在$output = $dompdf->output();
之前一切正常,我在使用$file_to_save= "../work-orderes/file.pdf";
当我从 send.php 调用函数sendMail()
时,此工作正常,但当我从另一个文件调用它时,我收到有关访问路径的错误。
这里的答案我应该使用绝对路径而不是下面的相对路径
$file_to_save= $_SERVER['DOCUMENT_ROOT']."\work-orderes/file.pdf";
现在文件已成功保存并按预期附加到电子邮件中!