0

我正在尝试使用 WAMP localhost 将电子邮件从我的 gmail id 发送到来自 codeigniter 的另一个电子邮件 ID。

我收到以下错误

地狱般

遇到以下 SMTP 错误:F

无法使用 PHP SMTP 发送电子邮件。

您的服务器可能未配置为使用此方法发送邮件。

这是我的控制器功能中的电子邮件发送代码

        $config['useragent']    = 'CodeIgniter';
        $config['protocol']     = 'smtp';
        $config['smtp_host']    = 'smtp.gmail.com';
        $config['smtp_user']    = 'myemail@gmail.com'; // Your gmail id
        $config['smtp_pass']    = '****'; // Your gmail Password
        $config['smtp_port']    = 465;
     //   $config['mailpath'] = 'D:\wamp64\sendmail';
       // $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";
      //  $config['smtp_crypto']      = 'ssl';

        $this->load->library('email');
        $this->email->initialize($config);

        $this->email->from('myemail@gmail.com', 'Sana Riaz');
        $this->email->to('myemail@gmail.com');

        $this->email->subject('Email Test');
        $this->email->message('Testing the email class.');

        //$this->email->send();

        if($this->email->send()){
            echo "sent";

        }else
            show_error($this->email->print_debugger());

这些是我php.ini在旧帖子中建议的文件中所做的设置。

extension=php_openssl.dll

[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
curl.cainfo ="D:\wamp64\bin\mariadb\mariadb10.2.8\mysql-test\std_data\cacert.pem"

[openssl]
; The location of a Certificate Authority (CA) file on the local filesystem
; to use when verifying the identity of SSL/TLS peers. Most users should
; not specify a value for this directive as PHP will attempt to use the
; OS-managed cert stores in its absence. If specified, this value may still
; be overridden on a per-stream basis via the "cafile" SSL stream context
; option.
openssl.cafile="D:\wamp64\bin\mariadb\mariadb10.2.8\mysql-test\std_data\cacert.pem"


[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = smtp.gmail.com
; http://php.net/smtp-port
smtp_port = 465

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from ="myemail@gmail.com"

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path ="D:\wamp64\sendmail\sendmail.exe -t"

这些是我尝试过的其他事情也没有奏效

  1. 使用 sendmail 和 mail 而不是$config['protocol'] = 'smtp';分别产生以下错误

    (邮件)

    无法使用 PHP mail() 发送电子邮件。您的服务器可能未配置为使用此方法发送邮件。

    (发邮件)

    退出状态码:1 无法打开到 Sendmail 的套接字。请检查设置。无法使用 PHP Sendmail 发送电子邮件。您的服务器可能未配置为使用此方法发送邮件。

  2. 将端口 465 更改为 25 和 587 会产生以下错误

    220 smtp.gmail.com ESMTP v78sm12109697wmv.27 - gsmtp

  3. 添加$config['smtp_crypto'] = 'ssl';哪个会产生以下错误

    fsockopen():SSL 操作失败,代码为 1。OpenSSL 错误消息:错误:140770FC:SSL 例程:SSL23_GET_SERVER_HELLO:未知协议

  4. 禁用防火墙、杀毒软件等

  5. 启用IMAPPOP来自 Gmail 帐户

我不知道我做错了什么或我错过了什么。任何建议都会非常有帮助

这些是我遇到并尝试过但没有用的一些以前的帖子

4

1 回答 1

0

像从本地主机一样在本地发送邮件需要一个邮件服务器,例如Fake SendMail

由于 Google Mail 已更改其 SSL 安全性并删除了对 Sendmail.exe 使用的 v2 的支持,因此将配置其 GMail 帐户的用户也需要配置 Stunnel。

你需要什么:

sendmail.ini设置如下:

smtp_server=smtp.gmail.com # if gmail, if configured with stunnel use localhost
smtp_port=465 # if gmail, if configured with stunnel use 25
smtp_ssl=auto # if gmail, if configured with stunnel use none
auth_username=youremail@gmail.com
auth_password=yourpassword

有关Stunnel配置和更多信息,请参阅使用 WAMP 配置发送邮件

于 2018-01-09T19:09:43.427 回答