我目前正在codeigniter中处理发送邮件,以下是smtp的详细信息,但是在如何解决此问题时出现错误,我在stackoverflow上发了一些帖子,要求对php.ini进行一些修改。
$config = Array(//for gmail Settings
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.gmail.com',
'smtp_port' => 465,
'smtp_user' => 'xyz@gmail.com', // user details
'smtp_pass' => 'xyzxyz', // password
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'wordwrap' => TRUE
);
$this->load->library('email', $config);
$this->email->set_header('MIME-Version', '1.0; charset=utf-8');
$this->email->set_header('Content-type', 'text/html');
$this->email->set_newline("\r\n");
$this->email->from('xyz@gmail.com@gmail.com', 'xyz.com'); //sender's email
$this->email->to($email); // change it to yours
$this->email->subject('Password reset email');
$message = "<h2>You have requested to reset password</h2>";
$message .= "<a href='" . base_url('controller') . "/" . "methodname/" . $reset . "'> Click here to reset your password</a>";
$this->email->message($message);
$send = $this->email->send();
答案 0 :(得分:0)
此配置帮助我解决了问题
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'smtp.gmail.com',
'smtp_port' => 465,
'smtp_crypto' => 'ssl',
'smtp_timeout' => '30',
'smtp_user' => 'xyz@gmail.com', // your smtp user
'smtp_pass' => 'xyzxyz', // your smtp password
'wordwrap' => TRUE
);