使用dompdf发送邮件

时间:2013-01-31 07:02:18

标签: php dompdf

  

可能重复:
  DOMPDF - attach created PDF to email

我想在生成PDF后立即发送电子邮件。 有ver。 DOMPDF和php ver 5.2的dompdf_0-6-0_beta3。能够根据需要生成PDF。但是,任何人都可以帮助我如何发送邮件与生成的PDF作为附件。

1 个答案:

答案 0 :(得分: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());
       }

     }

现在写一个像我在评论中提到的邮件功能。