提问人:Alix Axel 提问时间:5/1/2009 最后编辑:Juha SyrjäläAlix Axel 更新时间:5/12/2009 访问量:8804
这是使用 PHP 发送电子邮件的正确方式吗?
Is this the correct way to send email with PHP?
问:
我有点担心这个函数发送的电子邮件是否可以在大多数电子邮件和网络邮件客户端上以应有的方式正确识别,特别是我最关心的是这个疑问:
- UTF-8 声明和附件的格式是否正确?
- 我需要使用 quoted_printable_decode()吗?如果是,在哪里?
- 内容传输编码:7 位还是 8 位?我一直看到 7,但由于我正在发送 UTF-8 编码的邮件,我不确定。
- 我应该使用 mb_send_mail() 还是 mail() 就足够了?
编辑:我不知道为什么,但代码没有正确显示,我让它可用@http://gist.github.com/104818
编辑2:我知道电子邮件处理的其他替代方案(库),但为了我自己的好奇心和知识,我只想知道这段代码是 100% 好的,还是有问题的。
function Email($name, $from, $to, $subject, $message, $bcc = null, $attachments = null)
{
ini_set('SMTP', 'localhost');
ini_set('sendmail_from', $from);
$name = filter_var($name, FILTER_SANITIZE_STRING);
$from = filter_var($from, FILTER_SANITIZE_EMAIL);
$subject = filter_var($subject, FILTER_SANITIZE_STRING);
$boundary = '_Boundary_' . md5(microtime(true) . mt_rand(0, PHP_INT_MAX));
$headers = array
(
'MIME-Version: 1.0',
'Content-Type: multipart/mixed; boundary="Mixed' . $boundary . '"',
'Date: ' . date('r', time()),
'From: "' . $name . '" <' . $from . '>',
'Reply-To: "' . $name . '" <' . $from . '>',
'Return-Path: "' . $name . '" <' . $from . '>',
'X-Mailer: PHP ' . phpversion(),
'X-Priority: 2',
'X-MSMail-Priority: High',
'X-Originating-IP: ' . $_SERVER['SERVER_ADDR'],
);
if (is_null($to) === false)
{
if (is_array($to) === false)
{
$to = explode(',', $to);
}
foreach ($to as $key => $value)
{
$to[$key] = filter_var($value, FILTER_SANITIZE_EMAIL);
}
$to = implode(', ', array_filter($to));
}
if (is_null($bcc) === false)
{
if (is_array($bcc) === false)
{
$bcc = explode(',', $bcc);
}
foreach ($bcc as $key => $value)
{
$bcc[$key] = filter_var($value, FILTER_SANITIZE_EMAIL);
}
$headers[] = 'BCC: ' . implode(', ', array_filter($bcc));
}
if (is_null($attachments) === false)
{
settype($attachments, 'array');
foreach ($attachments as $key => $value)
{
if (is_file($value) === true)
{
$attachments[$key] = array
(
'',
'--Mixed' . $boundary,
'Content-Type: application/octet-stream; name="' . basename($value) . '"',
'Content-Disposition: attachment; filename="' . basename($value) . '"',
'Content-Transfer-Encoding: base64',
'',
trim(chunk_split(base64_encode(file_get_contents($value)))),
);
$attachments[$key] = implode("\n", $attachments[$key]);
}
else
{
unset($attachments[$key]);
}
}
$attachments = implode("\n", $attachments) . "\n";
}
$message = array
(
'This is a multi-part message in MIME format.',
'',
'--Mixed' . $boundary,
'Content-Type: multipart/alternative; boundary="Alt' . $boundary . '"',
'',
'--Alt' . $boundary,
'Content-Type: text/plain; charset="UTF-8"',
'Content-Disposition: inline',
'Content-Transfer-Encoding: 8bit',
'',
trim(strip_tags($message, '<a>')),
'',
'--Alt' . $boundary,
'Content-Type: text/html; charset="UTF-8"',
'Content-Disposition: inline',
'Content-Transfer-Encoding: 8bit',
'',
trim($message),
'',
'--Alt' . $boundary . '--',
$attachments,
'--Mixed' . $boundary . '--',
);
if (@mail($to, stripslashes($subject), implode("\n", $message), implode("\n", $headers)) === true)
{
return true;
}
return false;
}
答:
虽然这应该有效,但我强烈建议使用预构建的 Mail/SMTP 类,例如 Zend_Mail。虽然我不认为整个 Zend Framework 是猫的睡衣,但我确实对他们的邮件处理代码有很好的评价。
编辑:我还应该补充一点,使用预构建的邮件/SMTP 类将抽象出多部分电子邮件的几乎所有复杂性/结构。
更新 2009-05-06:直接回答您的问题。
- UTF-8 声明和附件的格式是否正确?
他们看起来足够体面。
- 我需要使用吗?如果是,在哪里?
quoted_printable_decode()
不。仅当要对电子邮件进行解码时,才希望使用。当你编码一个时,不是这样。你应该使用quoted_printable_encode()
吗?我接下来将讨论这个问题。quoted_printable_decode()
- 内容传输编码:7 位还是 8 位?我一直看到 7,但由于我正在发送 UTF-8 编码的邮件,我不确定。
仅当您知道目标 SMTP 服务器可以支持 8 位编码时,才使用 8 位编码。但是,由于您要将电子邮件传递给本地 MTA,因此我不建议设置此值。默认值为 7 位编码,但它有自己的一组限制:代码范围 1-127 的每行最多 998 个八位字节,CR 和 LF 只允许作为 CRLF 行结尾 (https://www.rfc-editor.org/rfc/rfc2045#section-2.7) 的一部分出现。
我建议您使用带引号-可打印 (https://www.rfc-editor.org/rfc/rfc2045#section-6.7) 内容传输-编码。你要打电话的地方,你会想用 .trim(strip_tags($message, '<a>'))
trim($message)
quoted_printable_encode(trim(...))
- 我应该使用还是足够?
mb_send_mail()
mail()
如果您知道您不会处理多字节消息(日语、韩语、中文等),那么就足够了。mail()
现在我已经回答了你最初的问题,让我告诉你哪里存在一些问题。
- 您指定纯文本和 Html 内容部件的字符集是 UTF-8,但您实际上并没有确保它们确实是 UTF-8 编码的。
- 在进一步处理它们之前,您正在检查 , ,但是,当它们实际上可能 .因此,如果您碰巧收到 for ,则不会处理该变量,但会继续向 发送电子邮件。
null
$to
$bcc
$attachments
null
null
$to
null
截至目前,这就是我将要讨论的全部内容,但我仍然强烈推荐一个预构建的解决方案,因为他们有很多用户/时间来解决错误。
评论
在大多数情况下,我都支持自己滚动,但是当涉及到邮件时,我衷心建议您让自己更轻松,并使用Swift Mailer或PHPMailer之类的东西(按此顺序,为了我的钱)。
作为附带奖励(假设您指定回复等),您被标记为垃圾邮件的机会也要小得多。
评论