我使用php文件使用Mandrill发送电子邮件。我在WAMPServer上测试它。 PHP文件上的所有命令都正确运行,并发送电子邮件。但是,之后的简单echo命令不会在浏览器上呈现任何内容!我错过了什么?
我尝试在代码中添加flush(),并将implicit_flush = On添加到php.ini,但无济于事。
...
$message = new Swift_Message($subject);
$message->setFrom($from);
$message->setBody($html, 'text/html');
$message->setTo($to);
$message->addPart($text, 'text/plain');
if ($recipients = $swift->send($message, $failures))
{
echo "Message successfully sent!";
}