PHP Swift mailler: 2 mümkün Doğrulayıcı kullanarak SMTP kimlik doğrulaması başarısız oldu

0 Cevap php

Smtp.exchange.example.com böyle: ben bu sunucuya PHP Swift mailler e-posta ile gönderdiğinizde:

// Load transport
$this->transport =
    Swift_SmtpTransport::newInstance(
       self::$config->hostname,
       self::$config->port
    )
    ->setUsername(self::$config->username)
    ->setPassword(self::$config->password)
    ;

// Load mailer
$this->mailer = Swift_Mailer::newInstance($this->transport);

// Initialize message
$this->message = Swift_Message::newInstance();

// From
$this->message->setFrom(self::$config->from);

// Set message etc. ...

// Send
$this->mailer->send($this->message);

Ben garip bir hata geri almak:

2 mümkün Doğrulayıcı kullanarak kullanıcı adı "user@example.com" ile SMTP sunucusu kimlik doğrulaması başarısız oldu

Ben giriş-info doğru olduğundan emin biliyorum.

0 Cevap