denismitr / utf-mailer
此包已被 废弃 并不再维护。未建议替代包。
我的Mailer,可避免所有垃圾邮件过滤器
v2.0.2
2016-06-27 17:53 UTC
Requires
- php: >=5.5
This package is auto-updated.
Last update: 2020-01-22 22:45:21 UTC
README
#UTF-Mailer 简单的PHP邮件发送类。避免所有垃圾邮件过滤器。使用模板。易于使用且无需任何依赖
##版本 2
##使用方法
$template = (new Template('/path/to/tempaltes/'))->render('contacts', $attributes);
UTFMail::to('email@email.com')
->from('My Name', 'my@email.com')
->title('My message')
->body($template)
->send();