n8n/packages/nodes-base/nodes/SendInBlue/EmailDescription.ts
brianinoa 74cedd94a8
feat(SendInBlue Node): Add SendInBlue Regular + Trigger Node (#3746)
* add sendinblue svg icon

* Add code and required files for new sendinblue node

* Add node to package.json

* Update credentials to display API Key instead of Access Token

* Use new svg found in brandfetch

*  Improvements

* ♻️ Moved descriptions for email to it's own file

*  Added support for contact get

*  moved email descriptions to it's own file

*  Add logic to conditionally remove/format sms,email

*  Improvements

*  Refactor Sender descriptions to it's own file

*  Fix urls

*  Improvements attempt

*  Refactor remove inline descriptions

*  Minor improvement

* 🎨 Learn a nice way to send options as key-value

*  Improvements

* ♻️ Fix Create Operation structure

* ♻️ Refactor create functionality for attribute

♻️ Introduce override for createAttribute selectedCategory

♻️ Add delete functionality

* 🔥 Remove preSend from delete

*  Implement override for body types

*  Cleanup node file

*  Update response for contact update
 Update request url for contact delete

*  Add presend check for optional properties that are empty
 Add Model file and TransactionalEmail interface

*  formatting

* ♻️ Remove requestOperations from Node Description level

* ♻️ Cleanup routing for Get All
♻️ Make Identifier required

*  Formatting

* ♻️ Add Options Collection

* ♻️ Add Filters area

* ♻️ Formatting

* ♻️ Handle empty return

* ♻️ Remove unused code

* ♻️ Fix pagination
♻️ Fix empty return for delete

*  Add pagination

*  Fix Modified Since

* ♻️ Reorder send operation ui

*  Remove no longer needed presend
 Add send html template operation

* ♻️ Make Contact Attribute name and type required

* ♻️ Rename Attribute to Contact Attribute

* ♻️ Rename Identifier to Contact Identifier

* ♻️ Remove SMS from root level because it can exist in Contact Attributes

* ♻️ Fix Array type using 'Array<T>'
♻️ Fix double quotes should be single quotes

* 👕 Lint Fix

*  Add email attachment functionality
 Add attachment data validation

*  Add dynamic loading of Email Template IDs

* ♻️ Cleanup validation method

*  Introduce workaround and use binary data for attachments

* feat: Migrated to npm release of riot-tmpl fork.

* 👕 Lint fix rules

* 👕 Lint fix rules

* fix: Updated imports to use @n8n_io/riot-tmpl

* fix: Fixed Logger.ts types.

*  Fix mixmatch of filename and package.json credentials list

*  fix mixmatch in nodes list

* feat(core): Give access to getBinaryDataBuffer in preSend method

*  clean up mixmatches in node naming

* ♻️ Refactor code to use newly exposed getBinaryDataBuffer method

*  Improvements

* 🔥 Remove unnecessary lines

* 👕 Fix linting issues

*  Fix issues with up to date APIs and improve readability

*  update naming of files

* ♻️ Move sendHtml boolean above subject
♻️ Update naming from Parameters to Fields

* ♻️ Move sendHtml boolean above subject
♻️ Update naming from Parameters to Fields

* ♻️ Add attribute name url encoding
♻️ Change limit's default to 50

*  Fix default for templateId

*  Fix display name for attribute list

* ♻️ Add clarity to attribute value display name

* ♻️ Add tags and attachments for emails

* ♻️ Add use of item's binary data fileName

* 👕 Fix action lint rule

* 👕 Remove deprecated lint rule

* ⬆️ Update eslint-plugin-n8n-nodes-base

* 👕 Fix lint rule for file name

*  Fix update attribute

* ♻️ Add upsert capabilites

* 🔥 Remove create or update operation

* ♻️ Add sendInBlueWebhookApi namespace

* ♻️ Add Webhook API functionality

*  Add SendInBlue Trigger

*  Return correct webhookId data

*  Add placeholder for receiving data

* 👕 Fixing existing linting issues

* 🚨 Enable namespacing in tslint file

* 👕 Fix linting issues

*  Rename exported WebhookApi

* 🔥 Remove unused Model.ts file

* ♻️ Update node to use SendInBlue namespace

*  Revert back to allowing upsert functionality

* ♻️ Fix options to better describe events

* Remove update flag for create operation

* ♻️ Fix discrepancies for contact resource

* remove no-namespace lint rule

* 👕 Fix linting issues

* ♻️ Add sendInBlueWebhookApi namespace

* ♻️ Add Webhook API functionality

*  Add SendInBlue Trigger

*  Return correct webhookId data

*  Add placeholder for receiving data

* 👕 Fix linting issues

*  Rename exported WebhookApi

* ♻️ Fix options to better describe events

* Add optionswithuri import that was lost

*  Fix details from janober's review

*  Fix order of displayName and name properties

*  Fix default value and improve loadOptions

*  Introduce support for comma separated attribute values

*  Introduce support for comma separated attribute values

* 👕 Fix linting issues

* Update defaults and required props

*  Fix copy paste issue Upsert was not using correct endpoint

*  Fix upsert email field display name

*  Last update, upsert email description

*  Add PostReceived type limit

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2022-08-03 18:08:51 +02:00

452 lines
8.5 KiB
TypeScript

import { IExecuteSingleFunctions, IHttpRequestOptions, INodeProperties } from 'n8n-workflow';
import { SendInBlueNode } from './GenericFunctions';
export const emailOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['email'],
},
},
options: [
{
name: 'Send',
value: 'send',
action: 'Send a transactional email',
},
{
name: 'Send Template',
value: 'sendTemplate',
action: 'Send an email with an existing Template',
},
],
routing: {
request: {
method: 'POST',
url: '/v3/smtp/email',
},
},
default: 'send',
},
];
const sendHtmlEmailFields: INodeProperties[] = [
{
displayName: 'Send HTML',
name: 'sendHTML',
type: 'boolean',
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
},
},
default: false,
},
{
displayName: 'Subject',
name: 'subject',
type: 'string',
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
},
},
routing: {
send: {
property: 'subject',
type: 'body',
},
},
default: '',
description: 'Subject of the email',
},
{
displayName: 'Text Content',
name: 'textContent',
type: 'string',
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
sendHTML: [false],
},
},
routing: {
send: {
property: 'textContent',
type: 'body',
},
},
default: '',
description: 'Text content of the message',
},
{
displayName: 'HTML Content',
name: 'htmlContent',
type: 'string',
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
sendHTML: [true],
},
},
routing: {
send: {
property: 'htmlContent',
type: 'body',
},
},
default: '',
description: 'HTML content of the message',
},
{
displayName: 'Sender',
name: 'sender',
type: 'string',
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
},
},
default: '',
required: true,
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileSenderEmail],
},
},
},
{
displayName: 'Receipients',
name: 'receipients',
type: 'string',
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
},
},
default: '',
required: true,
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileReceipientEmails],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
placeholder: 'Add Field',
description: 'Additional fields to add',
type: 'collection',
default: {},
displayOptions: {
show: {
resource: ['email'],
operation: ['send'],
},
},
options: [
{
displayName: 'Attachments',
name: 'emailAttachments',
placeholder: 'Add Attachment',
type: 'fixedCollection',
default: {},
options: [
{
name: 'attachment',
displayName: 'Attachment Data',
values: [
{
default: '',
displayName: 'Input Data Field Name',
name: 'binaryPropertyName',
type: 'string',
description:
'The name of the incoming field containing the binary file data to be processed',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileAttachmentsData],
},
},
},
{
displayName: 'Receipients BCC',
name: 'receipientsBCC',
placeholder: 'Add BCC',
type: 'fixedCollection',
default: {},
options: [
{
name: 'receipientBcc',
displayName: 'Receipient',
values: [
{
name: 'bcc',
displayName: 'Receipient',
type: 'string',
default: '',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileBCCEmails],
},
},
},
{
displayName: 'Receipients CC',
name: 'receipientsCC',
placeholder: 'Add CC',
type: 'fixedCollection',
default: {},
options: [
{
name: 'receipientCc',
displayName: 'Receipient',
values: [
{
name: 'cc',
displayName: 'Receipient',
type: 'string',
default: '',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileCCEmails],
},
},
},
{
displayName: 'Email Tags',
name: 'emailTags',
default: {},
description: 'Add tags to your emails to find them more easily',
placeholder: 'Add Email Tags',
type: 'fixedCollection',
options: [
{
displayName: 'Tags',
name: 'tags',
values: [
{
default: '',
displayName: 'Tag',
name: 'tag',
type: 'string',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileTags],
},
},
},
],
},
];
const sendHtmlTemplateEmailFields: INodeProperties[] = [
{
displayName: 'Template ID',
name: 'templateId',
type: 'options',
default: '',
typeOptions: {
loadOptions: {
routing: {
request: {
method: 'GET',
url: '/v3/smtp/templates',
qs: {
templateStatus: true,
limit: 1000,
offset: 0,
sort: 'desc',
},
},
output: {
postReceive: [
{
type: 'rootProperty',
properties: {
property: 'templates',
},
},
{
type: 'setKeyValue',
properties: {
name: '={{$responseItem.name}}',
value: '={{$responseItem.id}}',
},
},
{
type: 'sort',
properties: {
key: 'name',
},
},
],
},
},
},
},
displayOptions: {
show: {
resource: ['email'],
operation: ['sendTemplate'],
},
},
routing: {
send: {
type: 'body',
property: 'templateId',
},
},
},
{
displayName: 'Receipients',
name: 'receipients',
type: 'string',
displayOptions: {
show: {
resource: ['email'],
operation: ['sendTemplate'],
},
},
default: '',
required: true,
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileReceipientEmails],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
description: 'Additional fields to add',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['email'],
operation: ['sendTemplate'],
},
},
options: [
{
displayName: 'Attachments',
name: 'emailAttachments',
placeholder: 'Add Attachment',
type: 'fixedCollection',
default: {},
options: [
{
displayName: 'Attachment Data',
name: 'attachment',
values: [
{
displayName: 'Input Data Field Name',
name: 'binaryPropertyName',
default: '',
type: 'string',
description:
'The name of the incoming field containing the binary file data to be processed',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileAttachmentsData],
},
},
},
{
displayName: 'Email Tags',
name: 'emailTags',
default: {},
description: 'Add tags to your emails to find them more easily',
placeholder: 'Add Email Tags',
type: 'fixedCollection',
options: [
{
displayName: 'Tags',
name: 'tags',
values: [
{
default: '',
displayName: 'Tag',
name: 'tag',
type: 'string',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileTags],
},
},
},
{
displayName: 'Template Parameters',
name: 'templateParameters',
default: {},
description: 'Pass a set of attributes to customize the template',
placeholder: 'Add Parameter',
type: 'fixedCollection',
options: [
{
name: 'parameterValues',
displayName: 'Parameters',
values: [
{
displayName: 'Parameter',
name: 'parmeters',
type: 'string',
default: '',
placeholder: 'key=value',
description: 'Comma-separated key=value pairs',
},
],
},
],
routing: {
send: {
preSend: [SendInBlueNode.Validators.validateAndCompileTemplateParameters],
},
},
},
],
},
];
export const emailFields: INodeProperties[] = [
...sendHtmlEmailFields,
...sendHtmlTemplateEmailFields,
];