0

Outlook の「迷惑メール」に常に到着することを除いて、このメール機能は正常に動作します。

「受信トレイ」に届くように何か変更できますか?

また、関係あるか分かりませんが、届くまでに時間がかかる時と届かない時があるのでしょうか?

コード:

$subject = 'subject';
        $message = 'testingyesyes';
        $to = 'mail@chrismepham.com';
        $type = 'plain'; // or HTML
        $charset = 'utf-8';

        $mail     = 'no-reply@'.str_replace('www.', '', $_SERVER['SERVER_NAME']);
        $uniqid   = md5(uniqid(time()));
        $headers  = 'From: '.$mail."\n";
        $headers .= 'Reply-to: '.$mail."\n";
        $headers .= 'Return-Path: '.$mail."\n";
        $headers .= 'Message-ID: <'.$uniqid.'@'.$_SERVER['SERVER_NAME'].">\n";
        $headers .= 'MIME-Version: 1.0'."\n";
        $headers .= 'Date: '.gmdate('D, d M Y H:i:s', time())."\n";
        $headers .= 'X-Priority: 1'."\n";
        $headers .= 'X-MSMail-Priority: High'."\n";
        $headers .= 'Content-Type: multipart/mixed;boundary="----------'.$uniqid.'"'."\n\n";
        $headers .= '------------'.$uniqid."\n";
        $headers .= 'Content-type: text/'.$type.';charset='.$charset.''."\n";
        $headers .= 'Content-transfer-encoding: 7bit';

        mail($to, $subject, $message, $headers);

ありがとう

4

1 に答える 1

1

以下のリンクをチェックしてください

https://webapps.stackexchange.com/questions/5773/how-gmail-and-other-mail-services-detects-a-mail-as-a-spam

http://kb.mailchimp.com/article/how-spam-filters-think

于 2013-09-19T09:44:58.420 に答える