PDFをサーバーに保存せず、pearクラスを使用せずに、dompdfで生成されたPDFを電子メールで送信することは可能ですか?
私は次の場合にのみ解決策を見つけました:1)pdfをサーバーに保存してから添付ファイルとして追加する、または2)ナシクラスを使用する
どちらも私には合いません。私は変数にpdfを持っています:
$pdf = $dompdf->output();
以下のように、$pdf に文字列として保存した PDF 情報を base64 エンコードし、マルチパート MIME メールに直接挿入し、PHP の mail() 関数を使用して送信できるはずです。
// to, from, subject, message body, attachment filename, etc.
$to = "to@to.com";
$from = "from@from.com";
$subject = "subject";
$message = "this is the message body";
$fname="nameofpdfdocument.pdf";
$headers = "From: $from";
// boundary
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
// headers for attachment
$headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\"";
// multipart boundary
$message = "This is a multi-part message in MIME format.\n\n" . "--{$mime_boundary}\n" . "Content-Type: text/plain; charset=\"iso-8859-1\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $message . "\n\n";
$message .= "--{$mime_boundary}\n";
// preparing attachment
$data=$pdf;
$data = chunk_split(base64_encode($data));
$message .= "Content-Type: {\"application/pdf\"};\n" . " name=\"$fname\"\n" .
"Content-Disposition: attachment;\n" . " filename=\"$fname\"\n" .
"Content-Transfer-Encoding: base64\n\n" . $data . "\n\n";
$message .= "--{$mime_boundary}\n";
// send
//print $message;
$ok = @mail($to, $subject, $message, $headers, "-f " . $from);