<tfoot id='sxPbO'></tfoot>
    1. <i id='sxPbO'><tr id='sxPbO'><dt id='sxPbO'><q id='sxPbO'><span id='sxPbO'><b id='sxPbO'><form id='sxPbO'><ins id='sxPbO'></ins><ul id='sxPbO'></ul><sub id='sxPbO'></sub></form><legend id='sxPbO'></legend><bdo id='sxPbO'><pre id='sxPbO'><center id='sxPbO'></center></pre></bdo></b><th id='sxPbO'></th></span></q></dt></tr></i><div id='sxPbO'><tfoot id='sxPbO'></tfoot><dl id='sxPbO'><fieldset id='sxPbO'></fieldset></dl></div>

      <small id='sxPbO'></small><noframes id='sxPbO'>

      1. <legend id='sxPbO'><style id='sxPbO'><dir id='sxPbO'><q id='sxPbO'></q></dir></style></legend>

        • <bdo id='sxPbO'></bdo><ul id='sxPbO'></ul>

        Zend_Mail 发送的电子邮件被视为垃圾邮件

        时间:2023-05-30

        <small id='vhGcZ'></small><noframes id='vhGcZ'>

              <bdo id='vhGcZ'></bdo><ul id='vhGcZ'></ul>

              <i id='vhGcZ'><tr id='vhGcZ'><dt id='vhGcZ'><q id='vhGcZ'><span id='vhGcZ'><b id='vhGcZ'><form id='vhGcZ'><ins id='vhGcZ'></ins><ul id='vhGcZ'></ul><sub id='vhGcZ'></sub></form><legend id='vhGcZ'></legend><bdo id='vhGcZ'><pre id='vhGcZ'><center id='vhGcZ'></center></pre></bdo></b><th id='vhGcZ'></th></span></q></dt></tr></i><div id='vhGcZ'><tfoot id='vhGcZ'></tfoot><dl id='vhGcZ'><fieldset id='vhGcZ'></fieldset></dl></div>
              <legend id='vhGcZ'><style id='vhGcZ'><dir id='vhGcZ'><q id='vhGcZ'></q></dir></style></legend>

                <tbody id='vhGcZ'></tbody>

              • <tfoot id='vhGcZ'></tfoot>
                  本文介绍了Zend_Mail 发送的电子邮件被视为垃圾邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  请告诉我我做错了什么.我正在使用 Zend_Mail 类发送电子邮件,如下所示:

                  Please tell me what I am doing wrong. I am sending an email using the Zend_Mail class like this:

                  $message = <<<STR
                  You have a new invoice!
                  
                  Sign in to your clientarea to see it.
                  
                  Best regards,
                  
                  Company name
                  STR;
                  
                  $mail = new Zend_Mail();
                  $mail->setBodyText($message);
                  $mail->setFrom('billing@company.com', 'Company.com');
                  $mail->addTo('client@email.com', 'Client Name');
                  $mail->setSubject('You have a new invoice!');
                  $mail->send();
                  

                  虽然它是作为垃圾邮件接收的.我的服务器上还有其他应用程序,例如 Webmin,它们发送的电子邮件不会被视为垃圾邮件.

                  It is received as a spam though. There are other applications such as Webmin on my server and emails they send is not treated as SPAM.

                  推荐答案

                  我通过添加这些行解决了这个问题:

                  I have solved this by adding these lines:

                  $mail->setReplyTo('contact@company.com', 'Company');
                  $mail->addHeader('MIME-Version', '1.0');
                  $mail->addHeader('Content-Transfer-Encoding', '8bit');
                  $mail->addHeader('X-Mailer:', 'PHP/'.phpversion());
                  

                  关键行似乎添加了 Reply-To 标题.没有它,它总是会进入垃圾邮件.一旦我设置了 Reply-To 标头,电子邮件客户端就停止将其视为垃圾邮件.

                  The critical line seems to be adding Reply-To header. Without that it would always go to SPAM. Once I set the Reply-To header email clients stopped treating it as spam.

                  这篇关于Zend_Mail 发送的电子邮件被视为垃圾邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 Zend Framework 和 PHP 发送电子邮件 下一篇:Zend_Auth 最佳实践

                  相关文章

                  1. <tfoot id='feGNx'></tfoot>

                      <i id='feGNx'><tr id='feGNx'><dt id='feGNx'><q id='feGNx'><span id='feGNx'><b id='feGNx'><form id='feGNx'><ins id='feGNx'></ins><ul id='feGNx'></ul><sub id='feGNx'></sub></form><legend id='feGNx'></legend><bdo id='feGNx'><pre id='feGNx'><center id='feGNx'></center></pre></bdo></b><th id='feGNx'></th></span></q></dt></tr></i><div id='feGNx'><tfoot id='feGNx'></tfoot><dl id='feGNx'><fieldset id='feGNx'></fieldset></dl></div>
                      • <bdo id='feGNx'></bdo><ul id='feGNx'></ul>
                      <legend id='feGNx'><style id='feGNx'><dir id='feGNx'><q id='feGNx'></q></dir></style></legend>

                      <small id='feGNx'></small><noframes id='feGNx'>