n8n/packages/nodes-base/nodes/EmailSend/EmailSend.node.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
778 B
TypeScript
Raw Normal View History

import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
import { VersionedNodeType } from 'n8n-workflow';
2023-01-24 02:32:31 -08:00
import { EmailSendV1 } from './v1/EmailSendV1.node';
import { EmailSendV2 } from './v2/EmailSendV2.node';
export class EmailSend extends VersionedNodeType {
constructor() {
const baseDescription: INodeTypeBaseDescription = {
displayName: 'Send Email',
name: 'emailSend',
icon: 'fa:envelope',
group: ['output'],
defaultVersion: 2.1,
2023-01-24 02:32:31 -08:00
description: 'Sends an email using SMTP protocol',
};
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
1: new EmailSendV1(baseDescription),
2: new EmailSendV2(baseDescription),
2.1: new EmailSendV2(baseDescription),
2023-01-24 02:32:31 -08:00
};
super(nodeVersions, baseDescription);
2019-06-23 03:35:23 -07:00
}
}