apzentral / ink
具有响应式电子邮件模板引擎的PHP邮件发送器。
1.0.0
2014-11-09 17:49 UTC
Requires
- php: >=5.3.3
- swiftmailer/swiftmailer: v5.1.0
This package is not auto-updated.
Last update: 2024-09-28 17:07:19 UTC
README
具有响应式电子邮件模板引擎的PHP邮件发送器。
示例
-
创建邮件发送器对象。
$mailer = new apzentral\ink\Mailer;
-
然后只需使用
mail
方法发送电子邮件。$subject = 'Hello Mailer'; $from = 'apzentral@gmail.com'; $to = 'apzentral@gmail.com'; $body = '
Hello Mailer
这是一封测试电子邮件。
'; $mailer->mail($subject, $from, $to, $body);
模板示例
-
基本电子邮件正文