Email Alert
Sends Flowgear-branded alert emails to one or more recipients using Flowgear-managed SendGrid delivery.
Revision History
0.0.0.18 - Initial release.
Setup Notes
- This Node does not require a user-supplied
Connection. - Flowgear uses runtime-managed SendGrid configuration to send alert emails.
Methods
This Node exposes one Method for sending plain-text or HTML-formatted alert messages.
SendAlert
Sends an alert email with optional Flowgear HTML formatting and an optional single attachment.
| Parameter | Type | Description |
|---|---|---|
Recipients |
String | Recipient list separated by semicolons, commas, or new lines. |
Subject |
String | Email subject line. |
Body |
String | Email body content. |
HtmlBody |
Boolean | When true, wraps Body in the Flowgear HTML email template and includes the inline logo. |
AttachmentName |
String | Optional attachment filename. Required when Attachment is supplied. |
Attachment |
Object | Optional attachment content as byte[], string, or Stream. |
This Method does not return an output value.
Usage Notes
- Provide at least one valid recipient email address.
- If you provide an attachment, supply both
AttachmentNameandAttachmenttogether. Attachmentsupportsbyte[],string, orStreamvalues.- Use
HtmlBodywhen you want Flowgear-branded HTML email rendering. - Recipient delimiters are normalized, so you can mix semicolons, commas, and new lines in one value.
- For attachment scenarios, validate both attachment inputs before runtime execution to avoid contract errors.
Known Issues
- The Node currently supports a single attachment per call.