Codeigniter电子邮件未在AWS EC2中发送

时间:2018-01-17 12:06:10

标签: php codeigniter amazon-web-services email amazon-ec2

我尝试在Codeigniter项目中发送电子邮件。之前该域名托管在其他服务器上,然后电子邮件正在发送。现在我将我的域托管到AWS EC2,现在电子邮件没有发送。

代码:

$this->email->set_mailtype("html");
$this->email->from($from_email, 'Stackoverflow');
$this->email->to($email);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();  

任何人都可以帮我解决这个问题。答案将不胜感激。谢谢。

0 个答案:

没有答案