mail():无法通过“ localhost”端口25连接到邮件服务器,无法验证php.ini中的“ SMTP”和“ smtp_port”设置或使用ini_set()

时间:2018-08-03 10:50:53

标签: php codeigniter email smtp

我目前正在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();

1 个答案:

答案 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
                );