V2

Email Alert

Sends Flowgear-branded email alerts to one or more recipients.

Revision History

0.0.0.18 - 2026/04/20 - Initial release.

Setup Notes

  • This node relies on runtime-managed SendGrid configuration.
  • Provide at least one valid recipient email address.
  • If you provide an attachment, supply both AttachmentName and Attachment together.
  • Attachment supports byte[], string, or Stream values.

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, new lines, or spaces.
Subject String Email subject line.
Body String Email body content.
HtmlBody Boolean When true, wraps Body in the Flowgear HTML email template with inline logo.
AttachmentName String Optional attachment filename; required when Attachment is supplied.
Attachment Object Optional attachment content (byte[], string, or Stream).
Return Type Description
Result Object No payload is returned on success; failures are surfaced as method errors.

Usage Notes

  • Use HTML mode when you want Flowgear-branded email rendering.
  • Recipient delimiters are normalized, so mixed separators are allowed 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.