CakeEmail和SMTP错误535

时间:2013-02-10 22:18:39

标签: cakephp smtp cakephp-2.3

我正在使用cakephp 2.3.0,我想使用devocot + postfix发送电子邮件。 SMTP工作正常,因为我已经安装了roundCube,你收到了电子邮件和发送电子邮件。

class EmailConfig {
public $default = array(
    'host' => 'poczta.example.com',
    'port' => 25,
    'auth' => 'plain',
    'username' => 'username@poczta.example.com',
    'password' => '**********',
    'tls' => true,
    'transport' => 'Smtp',
    'from' => array('username@poczta.example.com' => 'Username'),
    'returnPath' => 'username@poczta.example.com',
    'layout' => false,
    'emailFormat' => 'html',
    'template' => 'only_text',
    'charset' => 'utf-8',
    'headerCharset' => 'utf-8',
);

}

发送电子邮件的代码:

        try {
            $oEmail->reset();
            $oEmail->config('default');
            $oEmail->to(preg_replace('/&#?[a-z0-9]+;/i', '' , trim($v['Email']['email']) ));
            $oEmail->subject($subject);
            $content = str_replace('${id}', md5($v['Email']['id']), $context);
            $content = str_replace('queueId', $queueId, $content);
            $oEmail->viewVars(array('email' => $content));
            if($oEmail->send()) {
                $last = $v['Email']['id'];
                $send++;
            }
        }
        catch(Exception $e) {
            $this->out($e->getMessage());
        }

我看到我的控制台:

SMTP Error: 535 5.7.8 Error: authentication failed: Invalid authentication mechanism

使用telnet快速测试:

telnet 127.0.0.1 25
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
220 poczta.example.com ESMTP Postfix (Debian/GNU)
ehlo testing
250-poczta.example.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH PLAIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN

那么请帮助我如何使用蛋糕发送电子邮件? 编辑:我有电子邮件配置文件。

1 个答案:

答案 0 :(得分:0)

它不在您的配置中tsl,而是tls