我正在尝试使用 Exchange 身份验证通过 swift mailer 发送电子邮件。但是,我似乎无法弄清楚为什么它不起作用。
<?php
require_once( "./application/helpers/swift/swift_required.php" );
$transport =
Swift_SmtpTransport::newInstance( "31.149.66.10", 25 )
->setUsername( "username" )
->setPassword( 'password' )
->setEncryption( "tls" );
$mailer = Swift_Mailer::newInstance( $transport );
$message = Swift_Message::newInstance( "onderwerp" )
->setFrom( array( "from@address.com" ) )
->setTo( array( "to@address.com" ) )
->setBody( "Body van het bericht" );
var_dump( $mailer->send( $message ) );
?>
这给了我错误:Uncaught exception 'Swift_TransportException' with message 'Failed to authenticate on SMTP server with username "nieuwsbrief" using 0 possible authenticators'.
服务器配置为使用 TLS 和基本身份验证(仅在启动 TLS 后提供基本身份验证)。
我看到有些人使用端口 587 进行 TLS 加密,但我无法连接端口 587。这给出了错误:Connection could not be established with host 31.149.66.10 [No route to host #113].
谁能看到我做错了什么?