mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2024-11-10 05:51:07 +07:00
69 lines
2.2 KiB
YAML
69 lines
2.2 KiB
YAML
name: Send email
|
|
description: Send an email to multiple recipients
|
|
author: dawidd6
|
|
branding:
|
|
icon: mail
|
|
color: blue
|
|
inputs:
|
|
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
|
|
server_address:
|
|
description: SMTP server address
|
|
server_port:
|
|
description: SMTP server port
|
|
default: "25"
|
|
secure:
|
|
description: Whether this connection use TLS (default is true if server_port is 465)
|
|
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)
|
|
required: false
|
|
from:
|
|
description: Full name of mail sender (might be with an email address specified in <>)
|
|
required: true
|
|
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
|
|
cc:
|
|
description: Carbon copy recipients (separated with comma)
|
|
required: false
|
|
bcc:
|
|
description: Blind carbon copy recipients (separated with comma)
|
|
required: false
|
|
reply_to:
|
|
description: An email address that will appear on the Reply-To field
|
|
required: false
|
|
in_reply_to:
|
|
description: The Message-ID this message is replying to
|
|
required: false
|
|
ignore_cert:
|
|
description: Allow unsigned/invalid certificates
|
|
required: false
|
|
convert_markdown:
|
|
description: Convert body from Markdown to HTML (set content_type input as text/html too)
|
|
required: false
|
|
attachments:
|
|
description: Files that will be added to mail message attachments (separated with comma)
|
|
required: false
|
|
priority:
|
|
description: Set Priority level for the mail message to 'high', 'normal' (default) or 'low'
|
|
required: false
|
|
nodemailerlog:
|
|
description: Log option for nodemailer
|
|
required: false
|
|
nodemailerdebug:
|
|
description: Debug option for nodemailer
|
|
required: false
|
|
runs:
|
|
using: node20
|
|
main: main.js
|