用Swift邮件发送

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Swift邮件发送相关的知识,希望对你有一定的参考价值。

Script to send mails with Swift Mailer
  1. <?php
  2. require_once 'lib/swift_required.php';
  3. include "conexion.php";
  4.  
  5. $correo = $_POST['correo']; //Mail Receiver
  6.  
  7. //Create the Transport
  8. $transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 25)
  9. ->setUsername('[email protected]')
  10. ->setPassword('password')
  11. ;
  12.  
  13. /*
  14. You could alternatively use a different transport such as Sendmail or Mail:
  15.  
  16. //Sendmail
  17. $transport = Swift_SendmailTransport::newInstance('/usr/sbin/sendmail -bs');
  18.  
  19. //Mail
  20. $transport = Swift_MailTransport::newInstance();
  21. */
  22.  
  23. //Create the Mailer using your created Transport
  24. $mailer = Swift_Mailer::newInstance($transport);
  25.  
  26. //Create a message
  27. $message = Swift_Message::newInstance('Banco de Ideas')
  28. ->setFrom('[email protected]')
  29. ->setTo($correo) // ->setTo('[email protected]')
  30. ->setBody('Your message...')
  31. ;
  32.  
  33. //Send the message
  34. $result = $mailer->send($message);
  35.  
  36. /*
  37. You can alternatively use batchSend() to send the message
  38.  
  39. $result = $mailer->batchSend($message);
  40. */
  41.  
  42. ?>

以上是关于用Swift邮件发送的主要内容,如果未能解决你的问题,请参考以下文章

用python实现自动发邮件的功能

如何使用 Swift 代码 (macOS) 发送电子邮件背景

在 Swift 中发送 Mailcore2 普通电子邮件

从 swift osx 应用程序发送电子邮件

尝试使用 swift mailer、gmail smtp、php 发送邮件

尝试从应用内发送电子邮件但不起作用 - Swift (iOS)