重複の可能性:
DOMPDF - 作成した PDF をメールに添付
PDFが生成されたらすぐにメールを送信したい。verを持っています。DOMPDF の dompdf_0-6-0_beta3 と php ver 5.2 。必要に応じて PDF を生成できます。しかし、生成されたpdfを添付ファイルとしてメールを送信する方法として、誰でも私を助けてくれませんか。
重複の可能性:
DOMPDF - 作成した PDF をメールに添付
PDFが生成されたらすぐにメールを送信したい。verを持っています。DOMPDF の dompdf_0-6-0_beta3 と php ver 5.2 。必要に応じて PDF を生成できます。しかし、生成されたpdfを添付ファイルとしてメールを送信する方法として、誰でも私を助けてくれませんか。
これは私が私のアプリケーションで行ったことです。それを確認してください。疑問がある場合はお知らせください。
アプリケーションからメールを送信できると思います。
$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());
}
}
コメントで述べたようなメール関数を書いてください。