簡體   English   中英

以PDF格式作為附件填寫的電子郵件數據

[英]Email data that was filled in PDF as Attachment

我有一個填充的PDF文件,提交后,該文件將通過Adobe Acrobat X中的“發送完成的pdf”選項發送完整的pdf到processpdf.php文件(請參見下面的代碼),該代碼使用$ HTTP_RAW_POST_DATA獲取原始數據並將其通過電子郵件發送。 它可以通過電子郵件發送,我得到了pdf,但是PDF無法以chrome / acrobat或其他任何格式打開,因為它表明文件已損壞。 我在這里做錯了什么?

我正在使用PHP5,Adobe Acrobat X,Safari 6

   <?php
    error_reporting(E_ALL);
    ini_set("display_errors", 1);

    if(!isset($HTTP_RAW_POST_DATA)) {
        echo "The Application could not be sent. Please save the PDF and email it manually.";
        exit;
    }

    $email_from = "xxx@xxx.com";
    $email_subject = "Subject";
    $email_txt = "A Form has been sent from xxx.com. See
    attachment.";

    $email_to = "xxx@xxxxx.com";

    $headers = "From: ".$email_from;

    $semi_rand = md5(time());
    $mime_boundary = "----=_NextPart_x{$semi_rand}x";

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

    $email_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"
    .$email_txt. "\n\n";

    // This uses the function above as the Version of PHP on the server
    //does not have
    // it available.

    $pdf = $HTTP_RAW_POST_DATA;

    $data = chunk_split($pdf);

    $email_message .= "--{$mime_boundary}\n" .
    "Content-type: application/pdf;\n name=\"App.pdf\"\n" .
    "Content-Transfer-Encoding: quoted-printable\n" .
    "Content-Disposition: attachment;\n filename=\"App.pdf\"\n\n" .
    $data . "\n\n" .
    "--{$mime_boundary}--\n";

    $ok = mail($email_to, $email_subject, $email_message, $headers);

    if($ok) {
    echo ("The file was successfully sent!");
    } else {
    die("Sorry but the email could not be sent. Please go back and try
    again!");
    }
    ?>

我知道了!! 感謝您對phpmailer的建議,該建議似乎已經解決了該問題。

工作代碼。 希望這可以幫助我從嘗試解決此問題的8個多小時中受益的人們! 我不敢相信用PHP處理可填充PDF的文檔很少。 使用PHPmailer類和以下代碼

<?php
if(!isset($HTTP_RAW_POST_DATA)) {
    echo "The Application could not be sent. Please save the PDF and email it manually.";
    exit;
}
echo "<html><head></head><body><img src='loading.gif'>"; //Loading image

//Create PDF file with the filled data
$semi_rand = md5(time());
$pdf = $HTTP_RAW_POST_DATA;

 $file = $semi_rand . ".pdf"; 
 $handle = fopen($file, 'w+');
 fwrite($handle, $pdf);   
 fclose($handle);
//

require_once('class.phpmailer.php');

$mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch

$mail->IsSMTP(); // telling the class to use SMTP

try {
  $mail->Host       = "mail.xxxxx.com"; // SMTP server
  $mail->SMTPDebug  = 2;                     // enables SMTP debug information (for testing)
  $mail->SMTPAuth   = true;                  // enable SMTP authentication
  $mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
  $mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
  $mail->Port       = 465;                   // set the SMTP port for the GMAIL server
  $mail->Username   = "XXXX@XXXXXX.com";     // GMAIL username
  $mail->Password   = "XXXXX";               // GMAIL password
  $mail->AddAddress('XXXX@XXXX.com', 'First last');
  $mail->SetFrom('XXXX@XXXXXX.com', 'Application ');
  $mail->Subject = 'Subject';
  $mail->Body = 'Body of the e-mail';
  $mail->AddAttachment($file); // attachment
  ob_start(); $mail->Send(); ob_get_clean(); //Prevents SMTP responses

  unlink($file);  //delete the temporary pdf file then redirect to the success page
  echo '<META HTTP-EQUIV="Refresh" Content="0; URL=success.php">';    
  exit; 

//otherwise show errors
} catch (phpmailerException $e) {
  echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
  echo $e->getMessage(); //Boring error messages from anything else!
}
  unlink($file);  //doubley make sure the temp pdf gets deleted
?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM