我訂閱我的網站時事通訊後發送電子郵件給用戶。但有時訂閱電子郵件將轉到SPAM文件夾。我分享的垃圾郵件測試結果的鏈接 - 上面&給垃圾郵件測試儀告訴我的https://www.mail-tester.com/web-3339Sp請檢查結果(分析)爲什麼我的郵件要SPAM通過代碼發送到垃圾郵件文件夾的電子郵件
這裏是我的配置,通過代碼 - 發送郵件 - >
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'mail.holaa.in',
'smtp_port' => 25,
'smtp_user' => '[email protected]',
'smtp_pass' => 'XXXXXXXXX',
'mailtype' => 'html',
'charset' => 'iso-8859-1'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]');
$this->email->to($receiver);
$this->email->subject($subject);
$this->email->message($message);
$ans = $this->email->send();
在此先感謝
沒問題,我不這麼認爲。我正在使用內置的Codeigniter庫.. –
這絕對不是問題。切換庫會將他的分數降低1。56(根據垃圾郵件測試),但也可能造成更多問題。 –