电子邮件是以垃圾邮件而非收件箱发送的(使用codeigniter)

时间:2018-04-25 08:03:35

标签: codeigniter-3

我正在使用php邮件库发送电子邮件。邮件是通过垃圾邮件而不是收件箱发送的。我希望它仅在收件箱中发送。你能帮帮我吗?以下是我的代码

$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;
$config['protocol'] = 'sendmail';
$this->email->initialize($config);  
$this->email->from('info@etechdata.in', 'ETechData');
$this->email->to('er.alfiyasiddiqui26@gmail.com');
$this->email->subject('Verification');
$this->email->message('Just for testing');
echo $this->email->send();

1 个答案:

答案 0 :(得分:0)

请检查

  1. 发送域上的SPF记录。您使用的SMTP服务器是否允许代表您的域发送?您可以使用此工具检查:https://mxtoolbox.com/spf.aspx
  2. 您可以尝试向https://www.mail-tester.com/发送一封电子邮件。它会告诉您电子邮件有什么问题,以及它被标记为垃圾邮件的原因。