mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
382 lines
6.8 KiB
TypeScript
382 lines
6.8 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const mailOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Send',
|
|
value: 'send',
|
|
description: 'Send an email',
|
|
},
|
|
],
|
|
default: 'send',
|
|
},
|
|
];
|
|
|
|
export const mailFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* mail:send */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Sender Email',
|
|
name: 'fromEmail',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'sender@domain.com',
|
|
description: 'Email address of the sender of the email',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Sender Name',
|
|
name: 'fromName',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'John Smith',
|
|
description: 'Name of the sender of the email',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Recipient Email',
|
|
name: 'toEmail',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'recipient@domain.com',
|
|
description: 'Comma-separated list of recipient email addresses',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Subject',
|
|
name: 'subject',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Subject of the email to send',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
dynamicTemplate: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Dynamic Template',
|
|
name: 'dynamicTemplate',
|
|
type: 'boolean',
|
|
required: true,
|
|
default: false,
|
|
description: 'Whether this email will contain a dynamic template',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'MIME type',
|
|
name: 'contentType',
|
|
type: 'options',
|
|
default: 'text/plain',
|
|
description: 'MIME type of the email to send',
|
|
options: [
|
|
{
|
|
name: 'Plain Text',
|
|
value: 'text/plain',
|
|
},
|
|
{
|
|
name: 'HTML',
|
|
value: 'text/html',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
dynamicTemplate: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Message Body',
|
|
name: 'contentValue',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
description: 'Message body of the email to send',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
dynamicTemplate: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Template ID',
|
|
name: 'templateId',
|
|
type: 'options',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTemplateIds',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
dynamicTemplate: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Dynamic Template Fields',
|
|
name: 'dynamicTemplateFields',
|
|
placeholder: 'Add Dynamic Template Fields',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
dynamicTemplate: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'fields',
|
|
values: [
|
|
{
|
|
displayName: 'Key',
|
|
name: 'key',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Key of the dynamic template field',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Value for the field',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'mail',
|
|
],
|
|
operation: [
|
|
'send',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Attachments',
|
|
name: 'attachments',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Comma-separated list of binary properties',
|
|
},
|
|
{
|
|
displayName: 'BCC Email',
|
|
name: 'bccEmail',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Comma-separated list of emails of the recipients of a blind carbon copy of the email',
|
|
},
|
|
{
|
|
displayName: 'Categories',
|
|
name: 'categories',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Comma-separated list of categories. Each category name may not exceed 255 characters.',
|
|
},
|
|
{
|
|
displayName: 'CC Email',
|
|
name: 'ccEmail',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Comma-separated list of emails of the recipients of a carbon copy of the email',
|
|
},
|
|
{
|
|
displayName: 'Enable Sandbox',
|
|
name: 'enableSandbox',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to use to the sandbox for testing out email-sending functionality',
|
|
},
|
|
{
|
|
displayName: 'IP Pool Name',
|
|
name: 'ipPoolName',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The IP Pool that you would like to send this email from',
|
|
},
|
|
{
|
|
displayName: 'Headers',
|
|
name: 'headers',
|
|
placeholder: 'Add Header',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Details',
|
|
name: 'details',
|
|
values: [
|
|
{
|
|
displayName: 'Key',
|
|
name: 'key',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Key to set in the header object',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Value to set in the header object',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Send At',
|
|
name: 'sendAt',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'When to deliver the email. Scheduling more than 72 hours in advance is forbidden.',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export type SendMailBody = {
|
|
personalizations: Array<{
|
|
to: EmailName[],
|
|
subject?: string,
|
|
cc?: EmailName[],
|
|
bcc?: EmailName[],
|
|
dynamic_template_data?: { [key: string]: string },
|
|
send_at?: number,
|
|
}>,
|
|
ip_pool_name?: string;
|
|
from: EmailName,
|
|
template_id?: string,
|
|
content?: Array<{
|
|
type: string,
|
|
value: string,
|
|
}>,
|
|
categories?: string[],
|
|
headers?: { [key: string]: string },
|
|
attachments?: Array<{
|
|
content: string,
|
|
filename: string,
|
|
type: string,
|
|
}>,
|
|
mail_settings: {
|
|
sandbox_mode: {
|
|
enable: boolean,
|
|
},
|
|
},
|
|
};
|
|
|
|
type EmailName = {
|
|
email: string,
|
|
name?: string,
|
|
};
|