rsthn/rose-ext-wind-sendgrid

SendGrid Adapter for Wind

1.0.5 2021-10-02 08:52 UTC

This package is auto-updated.

Last update: 2024-10-30 01:53:53 UTC


README

This extension adds expression functions to Wind to send emails using SendGrid.

NOTE: The extension detects the presence of Wind, when not installed, this extension will simply not be loaded.

Installation

composer require rsthn/rose-ext-wind-sendgrid

Configuration Section: Mail

Expression Functions

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

sendgrid::send name:string value:string ...

Sends an email and returns boolean (true) if successfully sent. Error messages are written to the system log. Accepts one or more name:value pairs. Currently supported:

Example:

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