如何使用PHP发送带有pdf附件的电子邮件?

use*_*946 2 php pdf email

嗨,我正在尝试发送带有doc,docx和pdf附件的邮件.我收到了doc和docx的电子邮件.但是当我尝试用pdf附件发送邮件时,它无法正常工作.因此,我收到错误消息'上传的文件不支持文件类型'.我找不到错误.谁能帮我?我的代码:

<?php 
    $to = $_POST["txtTo"];
    $subject = $_POST["txtSubject"];
    $from = $_POST["txtFormEmail"];
    $message = $_POST["txtDescription"];
    $random_hash = md5(date('r', time()));
    $headers .= "From: ".$from."<".$from.">\nReply-To: ".$_POST["txtFormEmail"]."";
    $headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
    $strFilesName = $_FILES["fileAttach"]["name"];
    $attachment = chunk_split(base64_encode(file_get_contents($_FILES["fileAttach"]["tmp_name"])));
    ob_start();
    //Turn on output buffering 
    ?> --PHP-mixed-<?php  echo $random_hash; ?> Content-Type: multipart/alternative; boundary="PHP-alt-<?php  echo $random_hash; ?>" --PHP-alt-<?php  echo $random_hash; ?> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit --PHP-alt-<?php  echo $random_hash; ?> Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: 7bit <?php  echo $message; ?> --PHP-alt-<?php  echo $random_hash; ?>-- --PHP-mixed-<?php  echo $random_hash; ?> Content-Type: <?php  echo $_FILES["fileAttach"]["type"]; ?>; name="<?php  echo $strFilesName; ?>" Content-Transfer-Encoding: base64 Content-Disposition: attachment <?php  echo $attachment; ?> --PHP-mixed-<?php  echo $random_hash; ?>-- <?php 
    $message = ob_get_clean();

    if ($_FILES["fileAttach"]["type"] == "application/pdf"|| $_FILES["fileAttach"]["type"]=="application/msword"||$_FILES["fileAttach"]["type"]==application/vnd.openxmlformats-officedocument.wordprocessingml.document")if($_FILES["fileAttach"]["size"] < 1024000){if ($_FILES["fileAttach"]["error"] > 0){ echo "Error:
    " . $_FILES["fileAttach"]["error"]."<br />";}else{$mail_sent = @mail( $to, $subject, $message, $headers );
}

echo $mail_sent ? "Mail sent" : "Mail failed";}else{echo ' File Size should be with in 1000 KB';} }else{echo 'The uploaded file is not supported file type.'; }?>
Run Code Online (Sandbox Code Playgroud)

Dhe*_*ngh 6

使用简单的php邮件功能发送邮件和dompdf将html转换为pdf将正常工作.

        <?php 
        $content="<html>html content here</html>"      
        $html2pdf = Yii::app()->ePdf->HTML2PDF();
        $html2pdf->WriteHTML($content);
        $to = "dheerajchouhan85@gmail.com";
        $from = "no-reply@email.com";
        $subject = "Thank you for your Contribution";
        $message = "<p>Your Message</p>";

        $separator = md5(time());
        $eol = PHP_EOL;
        $filename = "example.pdf";
        $pdfdoc = $html2pdf->Output('', 'S');
        $attachment = chunk_split(base64_encode($pdfdoc));
        $headers = "From: " . $from . $eol;
        $headers .= "MIME-Version: 1.0" . $eol;
  $headers .= "Content-Type: multipart/mixed; boundary=\"" . $separator . "\"" . $eol . $eol;
  $body = "Content-Transfer-Encoding: 7bit" . $eol;
  $body .= "This is a MIME encoded message." . $eol; 
        $body .= "--" . $separator . $eol;
        $body .= "Content-Type: text/html; charset=\"iso-8859-1\"" . $eol;
        $body .= "Content-Transfer-Encoding: 8bit" . $eol . $eol;
        $body .= $message . $eol;
        $body .= "--" . $separator . $eol;
        $body .= "Content-Type: application/octet-stream; name=\"" . $filename . "\"" . $eol;
        $body .= "Content-Transfer-Encoding: base64" . $eol;
        $body .= "Content-Disposition: attachment" . $eol . $eol;
        $body .= $attachment . $eol;
        $body .= "--" . $separator . "--";
        mail($to, $subject, $body, $headers);
         ?>
Run Code Online (Sandbox Code Playgroud)


Gla*_*vić 5

开始使用Swiftmailer,您的生活将更加轻松.

使用示例:

require_once('swift/lib/swift_required.php');

$transport = Swift_MailTransport::newInstance();
$mailer = Swift_Mailer::newInstance($transport);
$message = Swift_Message::newInstance()
    ->setFrom(array($from))
    ->setTo(array($to))
    ->setEncoder(Swift_Encoding::get7BitEncoding())
    ->setSubject($subject)
    ->setBody($body, 'text/html')
    ->addPart(strip_tags($body), 'text/plain')
    ->attach(Swift_Attachment::fromPath($filename))
;
$mailer->send($message);
Run Code Online (Sandbox Code Playgroud)