【发布时间】:2017-12-07 08:55:25
【问题描述】:
我尝试使用 codeigniter 电子邮件类发送电子邮件时出错。
我有一个错误: 无法在“localhost”端口 25 连接到邮件服务器,请验证 php.ini 中的“SMTP”和“smtp_port”设置或使用 ini_set()
如何测试在 codeigniter 中发送电子邮件?我也在使用本地主机。是不是只有在我使用 localhost 时才会出现这个问题?
这是我的代码:
public function emailme() {
$this->load->library('email');
$message = $this->input->post('email_msg');
$this->email->from('iamjohnx3303@yahoo.com', 'John');
$this->email->to('iamjohnx3302@gmail.com');
$this->email->subject('Email Test');
$this->email->message($message);
$this->email->send();
}
【问题讨论】:
-
@dhruvjadia 感谢您的回复,我想使用 codeigniter 库电子邮件类。我的代码中是否有错误的方法?
标签: php codeigniter email