Yii2密码重置不起作用

时间:2017-11-24 17:02:36

标签: php windows yii2 yii2-advanced-app swiftmailer

我使用Windows和Yii 2.0.13.1以及xampp和php7.1.4。 登录时,我点击重置链接,然后输入我的电子邮件并发送,我遇到此错误:

  

Swift_TransportException
  无法启动进程[系统无法找到指定的路径。   ]

我的常用/ config / main-local.php是:

'mailer' => [
        'class' => 'yii\swiftmailer\Mailer',
        'viewPath' => '@common/mail',
        // send all mails to a file by default. You have to set
        // 'useFileTransport' to false and configure a transport
        // for the mailer to send real emails.
        'useFileTransport' => false,
],

其他设置和文件处于默认模式。 问题是什么?请指导我

1 个答案:

答案 0 :(得分:2)

似乎您的配置中缺少传输配置
例如:使用gmail.com作为传输(您应该选择可用于主机的传输)

    'mailer' => [
        'class' => 'yii\swiftmailer\Mailer',
        'viewPath' => '@common/mail',
        'useFileTransport' => false,//set this property to false to send mails to real email addresses

        'transport' => [
            'class' => 'Swift_SmtpTransport',
            'host' => 'smtp.gmail.com',
            'username' => 'yourmail@gmail.com',
            'password' => 'your_password',
            'port' => '587',
            'encryption' => 'tls',
            'streamOptions' => [
                'ssl' => [
                    'verify_peer' => false,
                    'allow_self_signed' => true
                ],
            ]
        ],

    ],

现在一切都是正确的