Cakephp 3未知电子邮件错误

时间:2015-07-17 11:51:57

标签: php cakephp-3.0

我想问一下在cakephp3中发送电子邮件。

我正在使用cakephp3文档,并按示例显示配置了所有内容。

但是,当我尝试发送邮件时,会出现此错误:

  

无法发送电子邮件:未知

//app.php
'EmailTransport' => [

    'default' => [
        'className' => 'Mail',
        // The following keys are used in SMTP transports
        'host' => 'smtp.gmail.om',
        'port' => 465,
        'timeout' => 30,
        'username' => 'mymail@gmail.com',
        'password' => 'password',
        'client' => null,
        'tls' => null,
    ],
],

的ContactController:

public function contact() {

    if (isset($this->request->data) AND ($this->request->is('post'))) {
        $email = new Email('default');
        if ($email->from(['mymail@gmail.com' => 'My Site'])->to('othermail@gmail.com')->subject('Hello')->send('Message')) {
            //pr( 'ok');
        }
    }
}

这是一般性错误消息(在我看来,这可能有很多原因)?它在调试环境中没有价值。

4 个答案:

答案 0 :(得分:4)

您想使用SMTP服务器,但您已配置为使用Mail传输!

className选项应设置为Smtp。主机可能也应该是不同的(ssl://前缀),或者你应该启用TLS,请确保你仔细阅读下面链接搜索中的问题/答案。

另见

答案 1 :(得分:0)

默认配置中的主机名不正确。

应该是

'host' => 'smtp.gmail.com',

而不是

'host' => 'smtp.gmail.om',

答案 2 :(得分:0)

<a>

Yous这段代码:用你的凭据替换My@gmail.com和Secret,之后使用你的代码就行了。

答案 3 :(得分:0)

有一件事总是被遗忘的是电子邮件档案

   `'Email' => [
    'default' => [
        'transport' => 'gmail', //this allows the email class to use the gmail settings
        'from' => 'youremail@gmail.com',
        //'charset' => 'utf-8',
        //'headerCharset' => 'utf-8',
    ],
    ],`

顺便说一句,您可以为类似的测试,开发等设置多个配置文件