这是使用PHP发送电子邮件的正确方法吗?

2022-08-31 00:17:48

我有点担心这个函数是否以应有的方式发送可以在大多数电子邮件和Web邮件客户端上正确识别的电子邮件,特别是我最关心的是这种疑问:

  • 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;
}

答案 1

虽然这应该有效,但我强烈建议使用预构建的Mail / SMTP类,例如Zend_Mail。虽然我不认为整个Zend框架是猫的睡衣,但我确实对他们的邮件处理代码有很好的看法。

编辑:我还应该补充一点,使用预构建的Mail / 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()

现在我已经回答了你最初的问题,让我告诉你存在一些问题的地方。

  1. 您指定纯文本和 Html 内容部分的字符集是 UTF-8,但是它不会显示,因为您实际上确保它们确实是 UTF-8 编码的。
  2. 在进一步处理它们之前,您正在签入 ,但是,当它们实际上可能处于 .因此,如果您碰巧收到 for ,则不会处理该变量,但会继续向 发送电子邮件至 。null$to$bcc$attachmentsnullnull$tonull

截至目前,这就是我将要讨论的全部内容,但我仍然会强烈推荐一个预先构建的解决方案,因为他们有很多用户/时间来解决错误。


答案 2

在大多数情况下,我都支持滚动你自己的,但是当涉及到邮件时,我衷心建议自己让它更轻松,并使用像Swift MailerPHPMailer这样的东西(按照这个顺序,为了我的钱)。

作为附带奖励(并假设您指定回复等),您被标记为垃圾邮件的机会也要小得多。


推荐