Swiftmailer发送电子邮件失败

时间:2017-09-20 15:35:37

标签: php swiftmailer

我有这个代码,我用来通过Swiftmailer发送电子邮件。 我尝试了很多东西,我尝试过使用Phpmailer,我也无法发送简单的电子邮件。我也尝试过在php中使用mail()函数,没有,我没有配置sendmail,所以我想使用其中一个库。

我使用的代码是:

 require_once ('lib/swift_required.php');
 $message = Swift_Message::newInstance()
  //Give the message a subject
  ->setSubject('Webinar Registration')
  //Set the From address with an associative array
  ->setFrom(array('ami@am.com' => 'FROM NAME'))
  //Set the To addresses with an associative array
  ->setTo(array('ami@am.com'))
  //Give it a body
  ->setBody('My Message')
  //And optionally an alternative body
  //->addPart('<q>Here is the message itself</q>', 'text/html')
  ;

//Create the Transport
$transport = Swift_SmtpTransport::newInstance('127.0.0.1', 25);
//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);

//Send the message
$result = $mailer->send($message);

当我调试它时,它会在require语句后立即停止。我试图通过localhost发送它,我不想使用smtp。 请任何帮助表示赞赏。

0 个答案:

没有答案