4
$to = 'my@email.ca';
$subject = 'Receipt';
$repEmail = 'rep@sales.ca';

$fileName = 'receipt.pdf';
$fileatt = $pdf->Output($fileName, 'E');
$attachment = chunk_split($fileatt);
$eol = PHP_EOL;
$separator = md5(time());

$headers = 'From: Sender <'.$repEmail.'>'.$eol;
$headers .= 'MIME-Version: 1.0' .$eol;
$headers .= "Content-Type: multipart/mixed; boundary=\"".$separator."\"";

$message = "--".$separator.$eol;
$message .= "Content-Transfer-Encoding: 7bit".$eol.$eol;
$message .= "This is a MIME encoded message.".$eol;

$message .= "--".$separator.$eol;
$message .= "Content-Type: text/html; charset=\"iso-8859-1\"".$eol;
$message .= "Content-Transfer-Encoding: 8bit".$eol.$eol;

$message .= "--".$separator.$eol;
$message .= "Content-Type: application/pdf; name=\"".$fileName."\"".$eol; 
$message .= "Content-Transfer-Encoding: base64".$eol;
$message .= "Content-Disposition: attachment".$eol.$eol;
$message .= $attachment.$eol;
$message .= "--".$separator."--";

if (mail($to, $subject, $message, $headers)){
$action = 'action=Receipt%20Sent';
header('Location: ../index.php?'.$action);
}

else {
$action = 'action=Send%20Failed';
header('Location: ../index.php?'.$action);
}

フォームからPDFファイルを生成するためにTCPDFを短期間使用しています。それは非常にうまく機能し、PHPのその部分は変更されていません。次に、これらのPDFファイルを自分の電子メールアカウントに送信します。

電子メールは実際にこのコーディングとPDFの添付で機能しています。問題は、それがおよそ100バイトのサイズの空白のPDFであるということです。もちろん、これは有効なPDFではなく、フォームからの回答とは何の関係もありません。

私はPHPでの電子メールへのファイルの添付に精通していないので、この問題を解決するための助けをいただければ幸いです。

アップデート

まだ何人かがこれを見ているようですので、現在の解決策を投稿します。以下に提案するように、PHPMailerをダウンロードする必要があります。TCPDFの出力行から始めました。

$attachment = $makepdf->Output('filename.pdf', 'S');
SENDmail($attachment);

function SENDmail($pdf) {
require_once('phpmailer/class.phpmailer.php');
$mailer = new PHPMailer();

$mailer->AddReplyTo('reply@to.ca', 'Reply To');
$mailer->SetFrom('sent@from.ca', 'Sent From');
$mailer->AddReplyTo('reply@to.ca', 'Reply To');
$mailer->AddAddress('send@to.ca', 'Send To');
$mailer->Subject = 'Message with PDF';
$mailer->AltBody = "To view the message, please use an HTML compatible email viewer";
$mailer->MsgHTML('<p>Message contents</p>'));
if ($pdf) {$mailer->AddStringAttachment($pdf, 'filename.pdf');}

$mailer->Send();
}
4

2 に答える 2

13

選択肢は 2 つあります。PDF をファイルに保存してファイルを添付するか、文字列として出力することができます。文字列出力が望ましいと思います:

$pdfString = $pdf->Output('dummy.pdf', 'S');

エンコードされた文字列を返すだけなので、ファイル名は無視されます。これで、メールに文字列を含めることができます。このような添付ファイルを扱うときは、PHPMailer を使用することを好みます。これを行うには、PHPMailer の AddStringAttachment メソッドを使用します。

$mailer->AddStringAttachment($pdfString, 'some_filename.pdf');
于 2012-07-20T02:27:01.303 に答える
0

いくつかの代替案を試しました。唯一の方法は、PDF をフォルダーに保存してからメールで送信することでした。

$pdf->Output("folder/filename.pdf", "F"); //save the pdf to a folder
  require_once('phpmailer/class.phpmailer.php'); //where your phpmailer folder is
$mail = new PHPMailer();                    
$mail->From = "email.com";
$mail->FromName = "Your name";
$mail->AddAddress("email@yahoo.com");
$mail->AddReplyTo("email@gmail.com", "Your name");               
$mail->AddAttachment("folder/filename.pdf");      // attach pdf that was saved in a folder
$mail->Subject = "Email Subject";                  
$mail->Body = "Email Body";
if(!$mail->Send())
{
       echo "Message could not be sent. <p>";
       echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
       echo "Message sent";
} 
echo 'sent email and attachment';
于 2014-07-25T07:03:37.343 に答える