我正在使用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();
答案 0 :(得分:0)
请检查