我已经使用了这几种方法,但似乎无法让它发挥作用。我在实时服务器上运行它。
我正在使用bigrock托管,根据他们的文档,它说只需使用" localhost"作为smtp主机。 Link
它说电子邮件发送但我什么也没得到。
public function index() {
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'localhost',
'smtp_port' => '587',
// Other way it say Email sent
//'smtp_host' => 'ssl://localhost',
//'smtp_port' => '465',
'smtp_user' => 'support@abc.com',
'smtp_pass' => 'sdfsfsdfsd'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('support@abc.com', 'ABC');
$this->email->to('abc@gmail.com');
$this->email->subject('Test');
$this->email->message('Success');
if ($this->email->send()) {
echo 'Email Sent';
} else {
show_error($this->email->print_debugger());
}
}
提前致谢。
答案 0 :(得分:2)
这一行:$ this-> email-> to(' abc @ gmail'); make it' abc@gmail.com'并确保它已存在。如果它仍然不起作用,请尝试从您的电子邮件中发送一封合法的电子邮件 - > from。