我尝试使用SwiftMailer发送我的第一封PHP电子邮件,但它不起作用。 代码在
之下 <html>
<head>
</head>
<body>
<p></p>
<?php
require_once 'swift_required.php';
?>
<?php
// Create the Transport
$transport = Swift_SmtpTransport::newInstance('smtp.office365.com', 587, 'ssl')
->setUsername('scanner@here.com')
->setPassword('scanner');
$mailer = Swift_Mailer::newInstance($transport);
// Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
->setFrom(array('user@here.com' => 'test user'))
->setTo(array('support@here.com'=> 'IT Support'))
->setBody('Here is the message itself');
$numSent = $mailer->send($message);
printf("Sent %d messages\n", $numSent);
if (!$mailer->send($message, $failures)) {
echo "Failures:";
print_r($failures);
} else {
echo 'email sent successfully';
}
?>
</body>
</html>
我绝对没有任何错误或任何错误。如果我在调用$ mailer之前输入php代码或HTML标签,我会收到回复。但如果我在电话会议后这样做,......什么都没有。它好像在代码中某处停止了。