如何使用PHP邮件功能将PDF附加到电子邮件
发布时间:2020-05-25 10:37:50 所属栏目:PHP 来源:互联网
导读:我正在使用 PHP邮件功能发送电子邮件,但我想添加一个指定的PDF文件作为电子邮件的文件附件.我该怎么办? 这是我现在的代码: $to = me@myemail.com;$subject = My message subject;$message = Hello,nnThis is sending a text only email, but I would like t
|
我正在使用 PHP邮件功能发送电子邮件,但我想添加一个指定的PDF文件作为电子邮件的文件附件.我该怎么办? 这是我现在的代码: $to = "me@myemail.com"; $subject = "My message subject"; $message = "Hello,nnThis is sending a text only email,but I would like to add a PDF attachment if possible."; $from = "Jane Doe <janedoe@myemail.com>"; $headers = "From:" . $from; mail($to,$subject,$message,$headers); echo "Mail Sent!";您应该考虑使用诸如 PHPMailer之类的PHP邮件库,这样可以使发送邮件的过程更简单和更好. 这里是一个如何使用PHPMailer的例子,它真的很简单! <?php
require_once('../class.phpmailer.php');
$mail = new PHPMailer(); // defaults to using php "mail()"
$body = file_get_contents('contents.html');
$body = eregi_replace("[]",'',$body);
$mail->AddReplyTo("name@yourdomain.com","First Last");
$mail->SetFrom('name@yourdomain.com','First Last');
$mail->AddReplyTo("name@yourdomain.com","First Last");
$address = "whoto@otherdomain.com";
$mail->AddAddress($address,"John Doe");
$mail->Subject = "PHPMailer Test Subject via mail(),basic";
$mail->AltBody = "To view the message,please use an HTML compatible email viewer!"; // optional,comment out and test
$mail->MsgHTML($body);
$mail->AddAttachment("images/phpmailer.gif"); // attachment
$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
PHPMailer的替代品是http://swiftmailer.org/ (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
