PHP mail() 函数将损坏或未损坏的附件发送到不同的邮件系统
PHP mail() function sends attachments with or without corruption to different mail systems
我正在通过 PHP mail() 函数发送带附件的信件,它可以正常工作,过程中没有出现任何错误。消息直接发送给接收者,所有文本都完好无损。
问题是如果我将邮件发送到 GMail 地址,我在邮件中发送的附件(PDF 和图像)是可以的,但是如果我将邮件发送到其他邮件(我试过 Mail.ru 和一些站点邮件),它们就会损坏.
如果我将邮件转发到 GMail,它们仍然损坏并且无法打开。但是,如果我将未损坏的邮件从 GMail 转发到其他邮件地址,则文件没有问题。
消息完全一样怎么可能?
我在使用 mail() 函数时遇到了同样的问题,我的建议是使用 PHPMailer 并通过 SMTP 发送电子邮件。
这是一个使用 PHPmailer 的小代码片段:
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtpserver.com'; // Specify main SMTP server. If you dont have one us GMAL or mandrill
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@youremail.com'; // SMTP username
$mail->Password = 'pass'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('from@youremail.com', 'Mailer');
$mail->addAddress('joe@youremail.net', 'Joe User'); // Add a recipient
$mail->addAddress('ellen@youremail.com'); // Name is optional
$mail->addReplyTo('info@youremail.com', 'Information');
$mail->addCC('cc@youremail.com');
$mail->addBCC('bcc@youremail.com');
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
我在很多项目中使用过 Swift Mailer,从来没有遇到过问题,有很好的文档并且比其他框架更容易使用。
我正在通过 PHP mail() 函数发送带附件的信件,它可以正常工作,过程中没有出现任何错误。消息直接发送给接收者,所有文本都完好无损。 问题是如果我将邮件发送到 GMail 地址,我在邮件中发送的附件(PDF 和图像)是可以的,但是如果我将邮件发送到其他邮件(我试过 Mail.ru 和一些站点邮件),它们就会损坏. 如果我将邮件转发到 GMail,它们仍然损坏并且无法打开。但是,如果我将未损坏的邮件从 GMail 转发到其他邮件地址,则文件没有问题。 消息完全一样怎么可能?
我在使用 mail() 函数时遇到了同样的问题,我的建议是使用 PHPMailer 并通过 SMTP 发送电子邮件。
这是一个使用 PHPmailer 的小代码片段:
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtpserver.com'; // Specify main SMTP server. If you dont have one us GMAL or mandrill
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@youremail.com'; // SMTP username
$mail->Password = 'pass'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('from@youremail.com', 'Mailer');
$mail->addAddress('joe@youremail.net', 'Joe User'); // Add a recipient
$mail->addAddress('ellen@youremail.com'); // Name is optional
$mail->addReplyTo('info@youremail.com', 'Information');
$mail->addCC('cc@youremail.com');
$mail->addBCC('bcc@youremail.com');
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
我在很多项目中使用过 Swift Mailer,从来没有遇到过问题,有很好的文档并且比其他框架更容易使用。