2020-03-27 16:24:26 +07:00
|
|
|
name: Send email
|
|
|
|
description: Send an email to multiple recipients
|
2019-11-18 19:23:22 +07:00
|
|
|
author: dawidd6
|
|
|
|
branding:
|
|
|
|
icon: mail
|
|
|
|
color: blue
|
|
|
|
inputs:
|
|
|
|
server_address:
|
|
|
|
description: SMTP server address
|
|
|
|
required: true
|
|
|
|
server_port:
|
|
|
|
description: SMTP server port
|
|
|
|
required: true
|
|
|
|
username:
|
|
|
|
description: Authenticate as this user to SMTP server
|
|
|
|
required: true
|
|
|
|
password:
|
|
|
|
description: Authenticate with this password to SMTP server
|
|
|
|
required: true
|
|
|
|
subject:
|
|
|
|
description: Subject of mail message
|
|
|
|
required: true
|
|
|
|
body:
|
2020-03-27 15:52:00 +07:00
|
|
|
description: Body of mail message (might be a filename prefixed with file:// to read from)
|
2019-11-18 19:23:22 +07:00
|
|
|
required: true
|
|
|
|
to:
|
|
|
|
description: Recipients mail addresses (separated with comma)
|
|
|
|
required: true
|
|
|
|
from:
|
2020-03-27 15:52:00 +07:00
|
|
|
description: Full name of mail sender (might be with an email address specified in <>)
|
2019-11-18 19:23:22 +07:00
|
|
|
required: true
|
2020-03-24 19:32:34 +07:00
|
|
|
content_type:
|
2020-03-24 20:03:58 +07:00
|
|
|
description: Content-Type HTTP header (text/html or text/plain)
|
2019-12-18 05:45:26 +07:00
|
|
|
required: false
|
2020-03-24 19:32:34 +07:00
|
|
|
default: text/plain
|
2020-04-07 15:30:45 +07:00
|
|
|
attachments:
|
2020-04-07 15:32:14 +07:00
|
|
|
description: Files that will be added to mail message attachments (separated with comma)
|
2020-04-07 13:46:19 +07:00
|
|
|
required: false
|
2019-11-18 19:05:04 +07:00
|
|
|
runs:
|
2020-03-01 05:01:03 +07:00
|
|
|
using: node12
|
|
|
|
main: main.js
|