为什么codeigniter电子邮件会转到包含完整信息的垃圾邮件文件夹?

时间:2014-03-16 05:42:33

标签: php codeigniter email email-client email-spam

您好我正在使用CodeIgniter和PHP技术,我正在从应用程序发送电子邮件,但电子邮件正在收件人的垃圾邮件文件夹中发送。

$this->load->library('email');

$config['protocol'] = 'sendmail';
$config['charset'] = 'utf-8';
$config['wordwrap'] = TRUE;
$config['mailtype'] = 'html';

$this->email->initialize($config);

$this->email->from('aaaa@domain.com', 'MYRegistration');
$this->email->to('abc@domain.com');

$this->email->subject('Congratulation ! You are a User.');
$this->email->message('html code');
$KsbMailStatus = $this->email->send();

此电子邮件中包含一些图片和链接,因为这是注册电子邮件。

2 个答案:

答案 0 :(得分:0)

由于此行,电子邮件会被过滤为垃圾邮件

   $this->email->subject('Congratulation ! You are a User.');

将其更改为其他内容

 $this->email->subject('hi thanks for the subscription.');

答案 1 :(得分:0)

$this->email->from('aaaa@domain.com', 'MYRegistration');

来自电子邮件地址'aaaa@domain.com'应存在。

将其更改为存在的有效电子邮件地址。

可以解决您的问题