1

我试图弄清楚如何使用 Zend SMTP 传输和 SSL 发送电子邮件。新的 SmtpOptions 类似乎不包含 ssl 的属性。任何想法?

4

1 回答 1

2

这是将 SSL 选项传递给类的示例SmtpOptions

use Zend\Mail\Transport\Smtp as SmtpTransport;
use Zend\Mail\Transport\SmtpOptions;

// Setup SMTP transport using LOGIN authentication
$transport = new SmtpTransport();
$options   = new SmtpOptions(array(
    'name'              => 'localhost.localdomain',
    'host'              => '127.0.0.1',
    'connection_class'  => 'login',
    'connection_config' => array(
        'username' => 'user',
        'password' => 'pass',
        'ssl'      => 'tls', // can use tls or ssl
    ),
));
$transport->setOptions($options);
$transport->send($message);

希望有帮助。

于 2012-08-01T19:06:39.670 回答