我只需要帮助在梨邮件中设置auth类型。这是我目前的数组.. auth设置为true,但我需要它为true并设置为LOGIN方法。任何人都可以帮我解决这个问题吗?
$smtp = Mail::factory('smtp', array(
'host' => 'ssl://server.net',
'port' => '465',
'auth' => true,
'timeout' => 20,
'username' => 'theusername',
'password' => 'thepassword'
));
答案 0 :(得分:1)
根据https://pear.php.net/manual/en/package.mail.mail.factory.php#9454,您应该将auth
字段设置为"LOGIN"
,而不仅仅是true
。