博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Swift Mailer 发送邮件
阅读量:6273 次
发布时间:2019-06-22

本文共 797 字,大约阅读时间需要 2 分钟。

hot3.png

1 下载组件

$ composer require "swiftmailer/swiftmailer:^6.0"

 

2 利用php进行发送

   第一种方法利用smtp

require_once '/path/to/vendor/autoload.php';// Create the Transport$transport = (new Swift_SmtpTransport('smtp.example.org', 25))  ->setUsername('your username')  ->setPassword('your password');// 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'])  ->setTo(['receiver@domain.org', 'other@domain.org' => 'A name'])  ->setBody('Here is the message itself')  ;// Send the message$result = $mailer->send($message);

 

第二种方法利用sendmail本地发送,前提是你的服务器已经安装好sendmail组件

 

// Sendmail$transport = new Swift_SendmailTransport('/usr/sbin/sendmail -bs');

 

转载于:https://my.oschina.net/u/588516/blog/1605064

你可能感兴趣的文章
poj 2777(线段树的节点更新策略)
查看>>
Swift-EasingAnimation
查看>>
[翻译] BKZoomView
查看>>
C++类设计的一些心得
查看>>
tableVIew删除时的delete按钮被挡住时重写的方法
查看>>
读cookie中文字符乱码问题
查看>>
招募译者翻译并发数据结构
查看>>
普通表转换为分区表
查看>>
Java 容器 & 泛型:三、HashSet,TreeSet 和 LinkedHashSet比较
查看>>
性能优化总结(六):预加载、聚合SQL应用实例
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
package.json
查看>>
webpack4+babel7+eslint+editorconfig+react-hot-loader 搭建react开发环境
查看>>
Maven 插件
查看>>
初探Angular6.x---进入用户编辑模块
查看>>