doutan1637 2014-06-24 02:22
浏览 31
已采纳

mPDF自动生成的PDF邮件程序发送空白电子邮件

I am using mPDF class and am successfully able to generate an email with the following code. However, my email comes out blank. I am assuming but am not sure if this has something to do with my headers. It's hard for me to tell because I am getting my emails but am not able open the pdf it generates.

         include("./mpdf.php");

         $mpdf->debug = true;

         $html2 = '
              <div style="margin-left:3%;">Attach additional photos: 
              <input type="file" name="file" id="file" /></div><hr />';

         echo $html2;



         if ( isset( $_POST['submit'] ) ) {
         $file_path = "webform.php";
         $file_path_type = "application/pdf";
              $mpdf=new mPDF('iso-8859-2');
              $mpdf->WriteHTML($html);

         $file_path_name = "eval.pdf"; 
         $headers .= 'Content-type: text/html; charset=utf-8' . "
"; 
         $from = "info@myemail.com";
         $to = $_POST['email'];
         $ccto = $_POST['youremail'];
         $subject = "New Form Submitted"; 
         $message = "*** This is an automatically generated email, 
                   please do not reply *** Someone in your association 
                   has completed a survey.

         $headers = "From: ".$from;
         $headers.= "cc: " . $ccto . " <" . $ccto . ">" . "
" ;
         $file = fopen($file_path,'rb');
         $data = fread($file,$file_path);
         fclose($file); 

         $rand = md5(time());
         $mime_boundary = "==Multipart_Boundary_x{$rand}x"; 

         $headers .= "
MIME-Version: 1.0
" .
         "Content-Type: multipart/mixed;
" .
         " boundary=\"{$mime_boundary}\""; 

         $message .= "This is a multi-part message in MIME format.

" .
         "--{$mime_boundary}
" .
         "Content-Type:text/html; charset=\"iso-8859-1\"
" .
         "Content-Transfer-Encoding: 7bit

" .
         $message .= "

"; 


         $data = chunk_split(base64_encode($data)); 

        $message .= "--{$mime_boundary}
" .
          "Content-Type: {$file_path_type};
" .
          " name=\"{$file_path_name}\"
" .
          "Content-Disposition: attachment;
" .
          " filename=\"{$file_path_name}\"
" .
          "Content-Transfer-Encoding: base64
" .
        $data .= "

" .
          "--{$mime_boundary}--
";  

        if(@mail($to, $subject, $message, $headers)) {
        echo '<script language="javascript">';
        echo 'alert("Document sent successfully!")';
        echo '</script>';
        echo "Sent!";

        } else {
        echo 'Failed';
        }
        }
        exit;

PHP mail and mpdf users any help would be appreciated.

  • 写回答

2条回答 默认 最新

  • dotelauv682684 2014-06-24 05:54
    关注

    You're learning the hard way - Don't call mail() yourself because you will do it wrong; constructing and sending email messages is horribly complicated and full of pitfalls, as you're finding. Use a library, whether PHPMailer, SwiftMailer Zend_Mail etc, to do it and it will save you a great deal of hassle. You also need to check your two operations separately - first create a PDF, write it to a file and make sure it works correctly; Then write some code that sends a message and check that works; Then get it to send the PDF. Otherwise if you find it's not working, you won't be able to tell which part is broken.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!