mailgun.json•2.54 kB
{
"nodeType": "n8n-nodes-base.mailgun",
"displayName": "Mailgun",
"description": "Sends an email via Mailgun",
"version": 1,
"properties": [
{
"name": "fromEmail",
"displayName": "From Email",
"type": "string",
"default": "",
"description": "Email address of the sender optional with name",
"placeholder": "Admin <admin@example.com>",
"required": true
},
{
"name": "toEmail",
"displayName": "To Email",
"type": "string",
"default": "",
"description": "Email address of the recipient. Multiple ones can be separated by comma.",
"placeholder": "info@example.com",
"required": true
},
{
"name": "ccEmail",
"displayName": "Cc Email",
"type": "string",
"default": "",
"description": "Cc Email address of the recipient. Multiple ones can be separated by comma.",
"placeholder": ""
},
{
"name": "bccEmail",
"displayName": "Bcc Email",
"type": "string",
"default": "",
"description": "Bcc Email address of the recipient. Multiple ones can be separated by comma.",
"placeholder": ""
},
{
"name": "subject",
"displayName": "Subject",
"type": "string",
"default": "",
"description": "Subject line of the email",
"placeholder": "My subject line"
},
{
"name": "text",
"displayName": "Text",
"type": "string",
"default": "",
"description": "Plain text message of email",
"typeOptions": {
"rows": 5
}
},
{
"name": "html",
"displayName": "HTML",
"type": "string",
"default": "",
"description": "HTML text message of email",
"typeOptions": {
"rows": 5
}
},
{
"name": "attachments",
"displayName": "Attachments",
"type": "string",
"default": "",
"description": "Name of the binary properties which contain data which should be added to email as attachment. Multiple ones can be comma-separated."
}
],
"credentialsConfig": [
{
"name": "mailgunApi",
"required": true
},
{
"name": "fromEmail",
"required": true
}
],
"io": {
"inputs": [
"Main"
],
"outputs": [
"Main"
],
"outputNames": [],
"hints": {}
},
"wiring": {
"role": "generic",
"requires": [],
"optional": [],
"consumedBy": [],
"consumes": [
"Main"
],
"produces": [
"Main"
]
}
}