我想在生成 PDF 后立即发送电子邮件。有版本。DOMPDF 的 dompdf_0-6-0_beta3 和 php ver 5.2 。能够根据需要生成PDF。但是任何人都可以帮助我如何发送带有生成的pdf作为附件的邮件。
问问题
1669 次
1 回答
0
这是我在申请中所做的,请仔细阅读,如果您有任何疑问,请告诉我。
我假设您可以从您的应用程序发送邮件。
$pdf = $dompdf->output();
$file_location is the path where you saved your pdf file in your local host.
file_put_contents($file_location,$pdf);
Now call your mail function like this.
sendMail($from,$to,$subject,$message,$file_location);
function sendMail()
{
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'xxx@gmail.com', // change it to yours
'smtp_pass' => 'xxx', // change it to yours
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'wordwrap' => TRUE
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from($from); // change it to yours
$this->email->to($to);// change it to yours
$this->email->subject($subject);
$this->email->message($message);
$this->email->attach($file_location);
if($this->email->send())
{
echo 'Email sent.';
}
else
{
show_error($this->email->print_debugger());
}
}
现在像我在评论中提到的那样编写一个邮件功能。
于 2013-01-31T07:19:10.200 回答