Hai我在php中使用swift Mailer,我按照文档中的建议使用以下代码
// Create the Transport
$transport = (new Swift_SmtpTransport('smtp.bizmail.yahoo.com', 25, 'tls'))
->setUsername('XXXXX')
->setPassword('xxxxx')
;
// Create the Mailer using your created Transport
$mailer = new Swift_Mailer($transport);
// Create a message
$message = (new Swift_Message('Wonderful Subject'))
->setFrom(['xxxxxxxx' => 'ABBE Group'])
->setTo(['xxxxxxxxx', 'xxxxxxxxx'])
->setBody('Here is the message itself')
;
// Send the message
$result = $mailer->send($message);
接收电子邮件到我的邮件ID大约需要4到5分钟,即使php mailer也需要相同的时间,该应用程序托管在Windows 2012服务器中,并且我使用XAMPP托管我的应用程序,任何建议都会真的赞赏。