こんにちは、phpmailer でメールを送信しようとしました。私はphpmailerを使ってsmtp経由で送信します。私たちが持っているすべての顧客は、独自のIPを持っています。テスト メールを送信したところ、メール ヘッダーに 2 つの「受信済み」エントリがあったことがわかります。1つだけ表示することは可能ですか?顧客の 1 人がスパムを送信した場合、メイン サーバーに問題があると思うからです。
スクリプト:
require('lib/phpmailer/class.phpmailer.php');
require('lib/phpmailer/class.smtp.php'); // stellt die Methoden für SMTP-Connect bereit
$mail = new PHPMailer();
// Anmelden am SMTP-Server
$mail->IsSMTP();
$mail->Host = $smtphostname;
$mail->SMTPAuth = true;
$mail->Username = $smtpbenutzername;
$mail->Password = $smtppasswort;
$mail->Port = $smtpport;
$mail->Subject = 'SMTP - Test';
$mail->IsHTML(true);
$mail->Body = 'Dies ist eine SMTP - Testmail. Es ist keine Aktion erforderlich, sondern bestätigt lediglich die Einrichtung eines neuen SMTP - Kontos im Mailsystem.';
$mail->From = $absendeadresse;
$mail->FromName = 'SMTP - Testmailer';
$mail->AddReplyTo($antwortadresse);
$mail->Sender = $bounceadresse;
$mail->CharSet = "utf-8";
$Xuserid = 500;
$mail->Xuserid = $Xuserid;
$mail->AddAddress($adminemail);
メールヘッダー:
Return-Path: bounce@customerdomain.com
Received: from dc.ourdomain.com ([IP.IP.IP.IP]) by mx-ha.web.de (mxweb008)
with ESMTP (Nemesis) id 0M0Ptt-1ULMIH1Vcb-00uXxW for <xxx@gmail.com>; Sun, 19 May 2013 20:50:56 +0200
Received: from [IP.IP.IP.IP] (port=42845 helo=ourdomain.com) by dc.ourdomain.com with esmtpa (Exim 4.80)
(envelope-from <bounce@customerdomain.com>) id 1Ue8h7-00089Y-6b for xxx@gmail.com; Sun, 19 May 2013 20:50:57 +0200
Date: Sun, 19 May 2013 20:50:57 +0200
To: xxx@gmail.com
From: SMTP - Testmailer <info@customerdomain.com>
Reply-To: info@customerdomain.com
Subject: SMTP - Test
Message-ID: <933166e45238090b8be63d3e2891dd6b@ourdomain.com>
これは見せたくないのですが・・・可能ですか?
Received: from dc.ourdomain.com ([IP.IP.IP.IP]) by mx-ha.web.de (mxweb008)
with ESMTP (Nemesis) id 0M0Ptt-1ULMIH1Vcb-00uXxW for <xxx@gmail.com>; Sun, 19 May 2013 20:50:56 +0200