繁体   English   中英

如何从联系人页面yii2高级获取邮件

[英]how to get mail from contact page yii2 advanced

我正在使用yii2 advance。 我希望联系表单将电子邮件发送给管理员。 但是它不起作用应该怎么办? 我尝试了以下方式=>

'adminEmail' => 'admin@example.com', //wrote admin email id here

也改变
'useFileTransport' => false,使它处于活动状态的确切步骤是什么?

在您的config.php中,您还应该配置适当的传输方式,例如,可以使用的基于gmail帐户的传输方式

    'mailer' => [
        'class' => 'yii\swiftmailer\Mailer',
        .....
        'useFileTransport' => false,//set this property to false to send mails to real email addresses
        //comment the following array to send mail using php's mail function
        //
        //
        /* configurazione servizio email da usare in locale (localhost sviluppo) */
        'transport' => [
            'class' => 'Swift_SmtpTransport',
            'host' => 'smtp.gmail.com',
            'username' => 'your_gmail_username@gmail.com',
            'password' => 'your_gmail_password',
            'port' => '587',
            'encryption' => 'tls',
        ],

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM