PHP GMail SMTP失败

时间:2017-12-31 05:49:03

标签: php smtp

我用过这个swiftmailer PHP代码似乎工作,但最终这没有任何作用。 我希望处理这个回购的人可以帮助我。

<?php
    require_once 'swiftmailer/vendor/autoload.php';

    // Create the Transport
    $transport = (new Swift_SmtpTransport('smtp.gmail.com', 465))
      ->setEncryption('ssl')    
      ->setUsername('alice@wonderland')
      ->setPassword("zxcfA!0987")
    ;

    // Create the Mailer using your created Transport
    $mailer = new Swift_Mailer($transport);

    // Create a message
    $message = (new Swift_Message('Wonderful Subject'))
      ->setFrom(['john@doe.com' => 'John Doe'])
      ->setTo(['bob@cling.com' => 'Bob'])
      ->setBody('Here is the message itself')
      ;

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

0 个答案:

没有答案