【发布时间】:2012-04-13 04:25:29
【问题描述】:
谁能帮帮我??我正在尝试发送一封带有附件的电子邮件,它发送电子邮件,但电子邮件是以编码格式发送的所有这些,但没有一个在工作
【问题讨论】:
-
尝试使用一些好的库,比如 phpmailer ...
-
放一些代码,如果您需要我们找到解决方案...
标签: php email attachment encode
谁能帮帮我??我正在尝试发送一封带有附件的电子邮件,它发送电子邮件,但电子邮件是以编码格式发送的所有这些,但没有一个在工作
【问题讨论】:
标签: php email attachment encode
你可以使用PHPMailerhttp://code.google.com/a/apache-extras.org/p/phpmailer/
$mail = new PHPMailer(true); //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch
try {
$mail->AddReplyTo('name@yourdomain.com', 'First Last');
$mail->AddAddress('whoto@otherdomain.com', 'John Doe');
$mail->SetFrom('name@yourdomain.com', 'First Last');
$mail->AddReplyTo('name@yourdomain.com', 'First Last');
$mail->Subject = 'PHPMailer Test Subject via mail(), advanced';
$mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
$mail->MsgHTML(file_get_contents('contents.html'));
$mail->AddAttachment('images/phpmailer.gif'); // attachment
$mail->AddAttachment('images/phpmailer_mini.gif'); // attachment
$mail->Send();
echo "Message Sent OK</p>\n";
} catch (phpmailerException $e) {
echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
echo $e->getMessage(); //Boring error messages from anything else!
}
谢谢
:)
【讨论】: