我正在使用Wamp Server(本地主机)
遇到了PHP错误 严重性:警告 消息:mail()[function.mail]:无法连接到“localhost”端口25的邮件服务器,验证php.ini中的“SMTP”和“smtp_port”设置或使用ini_set() 文件名:libraries / Email.php 行号:1553
控制器
if ($this->form_validation->run() == TRUE)
{
//Email Verification
$key = md5(uniqid());
$this->load->library('email',array('mailtype'=>'html'));
$this->email->from ('info@worldquotes.in','Admin');
$this->email->to($this->input->post('email'));
$this->email->Subject('Confirm YOur Account');
$message = "<p> thank you for Signing Up </p>";
$message .= "<p> <a href= '".base_url()."main/register_user/$key '> Click here </a> to Confirm Your Account </p>";
$this->email->message($message);
if ($this->email->send()) {
echo "Then Email has been Send";
}else echo "Could ot send the Email, Contact info@worldquotes.in";
}
else
{
$this->load->view('signup');
}
}
我可以知道为什么会出现错误消息以及如何解决?
答案 0 :(得分:0)
您需要先配置服务器以进行邮寄。看看这个方便的教程,你应该在路上。
http://roshanbh.com.np/2007/12/sending-e-mail-from-localhost-in-php-in-windows-environment.html
如果您在查找ISP的SMTP服务器时遇到问题,可以查看以下目录: http://www.arclab.com/products/amlc/list-of-smtp-and-pop3-servers-mailserver-list.html
希望这有帮助!