简体   繁体   中英

Email data that was filled in PDF as Attachment

I have a filled PDF file that when submitted sends the completed pdf, via the send completed pdf option in Adobe Acrobat X to th processpdf.php file (see code below) the code gets the raw data with $HTTP_RAW_POST_DATA and e-mails it. It e-mails fine, I get the pdf, but the PDF won't open in chrome/acrobat or anything because it says it is corrupted. What am I doing wrong here??

I'm using 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!");
    }
    ?>

I got it working!! Thank you for the suggestion of phpmailer that seems to have solved the issue.

Working code. Hope this helps people out there from the 8+ hours I spent trying to solve this issue! I can't believe how little documentation there is about handling fillable PDF's with PHP. Use the PHPmailer class and the below code

<?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
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM