垃圾郵件避免問題

垃圾郵件避免問題

我現在正在開發一個項目,該項目發送電子郵件作為購買確認。有些電子郵件仍被視為垃圾郵件。我已經為Google商業應用程式註冊了域名,並且正在使用 PHPMailer 程式碼庫(用於 SugarCRM、drupal 等)透過 google 伺服器使用 smtps 發送電子郵件。我意識到訊息本身的正文內容可能是負責的。

然而,我很難理解的是標題。 ourgreatmovie.com 網域出現在標題的多個部分。這最初是我們使用的域名,直到我們更改為turnofthiscentury.com.我認為這可能是由於我為舊網域設定的反向 DNS 指標 - 但是我已經讓我的託管提供者將其更改為新網域並驗證了更改。

此外,我已經檢查過/etc/hosts file;那裡什麼也沒有── /etc/sysconfig/network(CentOS 6)也是一樣;不再確定該網域來自哪裡;在目的地收到的標頭範例副本如下: 提前致謝!

Received: by 10.205.75.199 with SMTP id zb7csp33558bkb; Thu, 29 Aug 2013 10:03:53 -0700 (PDT)
Received: from ourgreatmovie.com (turnofthiscentury.com. [199.103.57.26]) by mx.google.com with ESMTPS id mc6si19213371icc.79.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 29 Aug 2013 10:03:52 -0700 (PDT)
Received: from ourgreatmovie.com (localhost.localdomain [127.0.0.1]) by ourgreatmovie.com (8.13.8/8.13.8) with ESMTP id r7TCAYLw020926 for <[email protected]>; Thu, 29 Aug 2013 08:10:34 -0400
Received: (from apache@localhost) by ourgreatmovie.com (8.13.8/8.13.8/Submit) id r7TCAYgg020925; Thu, 29 Aug 2013 08:10:34 -0400
X-Received: by 10.43.53.144 with SMTP id vq16mr1714222icb.41.1377795832986; Thu, 29 Aug 2013 10:03:52 -0700 (PDT)
Return-Path: <[email protected]>
Received-Spf: neutral (google.com: 199.103.57.26 is neither permitted nor denied by best guess record for domain of [email protected]) client-ip=199.103.57.26;
Authentication-Results: mx.google.com; spf=neutral (google.com: 199.103.57.26 is neither permitted nor denied by best guess record for domain of [email protected]) [email protected]
X-Php-Originating-Script: 0:class.phpmailer.php
Message-Id: <[email protected]>
X-Priority: 3
X-Mailer: PHPMailer 5.2.6 (https://github.com/PHPMailer/PHPMailer/)
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit

答案1

看起來這就是郵件伺服器程式發送的內容,因為它是 HELO/EHLO。

檢查郵件系統中的此設定:[email protected]以及伺服器在 SMTP 設定/通訊期間如何識別自身的任何設定。

檢查這兩個連結以供參考:

如何使用sendmail指定傳出HELO?

https://stackoverflow.com/questions/5672651/change-helo-host-name-when-sending-email

相關內容