rsthn/rose-ext-phpmailer

PHPMailer Extension for Rose

Installs: 1

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:rose-extension

2.0.0 2025-01-20 08:43 UTC

This package is auto-updated.

Last update: 2025-02-20 09:03:10 UTC


README

This extension adds expression functions to Rose to send emails using PHPMailer.

Installation

composer require rsthn/rose-ext-phpmailer

Configuration Section: Mail

Expression Functions

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

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

Accepts one or more name:value pairs, the name describes the field to set in the mail object of PHPMailer. Currently supported:

Example:

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