rsthn/rose-ext-wind-phpmailer

Wind 的 PHPMailer 适配器

安装: 83

依赖者: 0

建议者: 0

安全: 0

星标: 1

关注者: 1

分支: 0

开放问题: 0

类型:rose-extension

1.0.7 2021-10-02 08:51 UTC

This package is auto-updated.

Last update: 2024-09-30 01:16:53 UTC


README

此扩展向 Wind 添加表达式函数,用于通过 PHPMailer 发送电子邮件。

注意:扩展检测 Wind 是否已安装,如果没有安装,则此扩展将不会加载。

安装

composer require rsthn/rose-ext-wind-phpmailer

配置部分:Mail

表达式函数

mail::send name:string value:string ...

phpmailer::send name:string value:string ...

接受一个或多个 name:value 对,名称描述了要在 PHPMailer 的 mail 对象中设置的字段。目前支持

示例

(mail::send
	RCPT 'example@host.com'
	SUBJECT 'This is a test.'
	BODY '<b>Thanks for reading this email.</b>'
)