我知道这是一个常见的问题。但是我试了很多东西要解决,但我还是弄清楚了这个错误的原因。
实际上这是错误集的第一个错误。 我的控制器功能如下:
公共职能指数(){
$config['useragent'] = 'CodeIgniter';
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.googlemail.com';
$config['smtp_user'] = 'author@example.org';// Your gmail id
$config['smtp_pass'] = '********';// Your gmail Password
$config['smtp_port'] = 465;
$config['smtp_crypto'] = "ssl";
$config['smtp_timeout'] = 30;
$config['wordwrap'] = TRUE;
$config['wrapchars'] = 76;
$config['mailtype'] = 'html';
$config['charset'] = 'iso-8859-1';
$config['validate'] = FALSE;
$config['priority'] = 3;
$config['newline'] = "\r\n";
$config['crlf'] = "\r\n";
$this->email->initialize($config);
$this->email->from('author@example.org', 'authorname'); //your gmail id & your name
$this->email->to('recipient@example.org'); //receipient's email
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$res = $this->email->send();
if($res)
{
echo '<script>alert("You Have Successfully sent the mail!");</script>';
}
else{
$this->session->set_userdata("message","Email Not Sent!");
}
}
我根据一些教程修改了我的php.ini文件,如下所示:
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = ssl://smtp.googlemail.com
; http://php.net/smtp-port
smtp_port = 465
; For Win32 only.
; http://php.net/sendmail-from
sendmail_from ="admin@wampserver.invalid"
我正在使用带有WAMP服务器的PHP 5.6.25。 一个附加信息 - 我的电子邮件库包含以下代码:
class CI_Email {
var $useragent = "CodeIgniter";
var $mailpath = "/usr/sbin/sendmail"; // Sendmail path
但实际上在上面提到的路径中没有这样的文件。我不知道这是不是问题。
请帮助我!!