2020-03-27 10:24:26 +01:00
name : Send email
description : Send an email to multiple recipients
2019-11-18 13:23:22 +01:00
author : dawidd6
branding :
icon : mail
color : blue
inputs :
2022-09-09 19:53:48 +03:00
connection_url :
description : Connection URL protocol://user:password@server:port, protocol can be smtp or smtp+starttls, replaces server_address, server_port, secure, username and password
2019-11-18 13:23:22 +01:00
server_address :
description : SMTP server address
server_port :
description : SMTP server port
2022-09-09 19:53:48 +03:00
default : "25"
secure :
description : Whether this connection use TLS (default is true if server_port is 465)
2019-11-18 13:23:22 +01:00
username :
description : Authenticate as this user to SMTP server
password :
description : Authenticate with this password to SMTP server
subject :
description : Subject of mail message
required : true
to :
description : Recipients mail addresses (separated with comma)
2023-09-27 12:19:06 +05:30
required : false
2019-11-18 13:23:22 +01:00
from :
2020-03-27 09:52:00 +01:00
description : Full name of mail sender (might be with an email address specified in <>)
2019-11-18 13:23:22 +01:00
required : true
2021-04-25 22:11:54 +08:00
body :
description : Body of mail message (might be a filename prefixed with file:// to read from)
required : false
html_body :
description : HTML body of mail message (might be a filename prefixed with file:// to read from)
required : false
2020-12-16 18:16:24 +02:00
cc :
description : Carbon copy recipients (separated with comma)
required : false
bcc :
description : Blind carbon copy recipients (separated with comma)
required : false
2021-04-07 18:34:58 +01:00
reply_to :
description : An email address that will appear on the Reply-To field
required : false
2021-10-17 09:45:58 +02:00
in_reply_to :
description : The Message-ID this message is replying to
required : false
2021-04-02 00:02:46 +02:00
ignore_cert :
description : Allow unsigned/invalid certificates
required : false
2020-11-30 12:51:34 -05:00
convert_markdown :
description : Convert body from Markdown to HTML (set content_type input as text/html too)
required : false
2020-04-07 11:30:45 +03:00
attachments :
2020-04-07 11:32:14 +03:00
description : Files that will be added to mail message attachments (separated with comma)
2020-04-07 09:46:19 +03:00
required : false
2021-07-02 12:33:56 -04:00
priority :
description : Set Priority level for the mail message to 'high', 'normal' (default) or 'low'
required : false
2024-01-05 18:40:18 +01:00
nodemailerlog :
description : Log option for nodemailer
required : false
nodemailerdebug :
description : Debug option for nodemailer
required : false
2025-04-08 14:36:45 -04:00
envelope_from :
description : Custom envelope sender address for SMTP MAIL FROM command
required : false
envelope_to :
description : Custom envelope recipient addresses for SMTP RCPT TO command (separated with comma)
required : false
2019-11-18 13:05:04 +01:00
runs :
2024-01-26 15:23:23 -08:00
using : node20
2020-02-29 23:01:03 +01:00
main : main.js