PHPmail()
を使用して、CSVファイルが添付された電子メールを送信しています。私の問題は、サーバーがこれらのメールの一部 (実際にはほとんどのメール) を隔離していることです。ログによると、理由は次のとおりです。
mail.info:Sep 9 21:34:08 mailout4 amavis[18812]: (18812-05-2) Passed BAD-HEADER-2 {RelayedOpenRelay,Quarantined}, [xxx.xxx.xxx.xxx] <xyz@ws15.surf-town.net> -> <xyz@xyz.com>, mail_id: skJU2BMP1ssu, Hits: 1.117, size: 5145, queued_as: BB1DE33018, 2571 ms
BAD-HEADER-2 refers to: CC_BADH.',2', "id=%n - BAD HEADER: nonencoded 8-bit character",
これは、CSV ファイル データ内の特殊な文字が原因で発生すると考えていますか?
メールを送信するコードは次のようになります (コードは他にもありますが、これはメール ヘッダーなどを示しています)。
//create attachment from array of data $csvdata
$attachment = chunk_split(base64_encode(create_csv_string($csvData,$filename)));
// Make the body of the message
$body = "--$multipartSep\r\n"
. "Content-Type: text/plain; charset=utf-8; format=flowed\r\n"
. "Content-Transfer-Encoding: 7bit\r\n"
. "\r\n"
. "$body\r\n"
. "--$multipartSep\r\n"
. "Content-Type: text/csv\r\n"
. "Content-Transfer-Encoding: base64\r\n"
. "Content-Disposition: attachment; filename=\"$filename\"\r\n"
. "\r\n"
. "$attachment\r\n"
. "--$multipartSep--";
$subject .= ' (' . date('Y-m-d H:i:s') . ')';
$headers = array(
"From: $from",
"Reply-To: $from",
"Content-Type: multipart/mixed; boundary=\"$multipartSep\""
);
$recievers = explode(','.$to);
foreach ($recievers as $reciever) {
mail($reciever, $subject, $body, implode("\r\n", $headers));
}
この問題に遭遇した人はいますか?
サーバーのセットアップを変更する必要のない修正について何かアイデアはありますか?