mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
|
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
||
|
import { IExecuteFunctions } from 'n8n-core';
|
||
|
|
||
|
import {
|
||
|
INodeExecutionData,
|
||
|
INodeType,
|
||
|
INodeTypeBaseDescription,
|
||
|
INodeTypeDescription,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
import * as send from './send.operation';
|
||
|
|
||
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-missing-subtitle
|
||
|
const versionDescription: INodeTypeDescription = {
|
||
|
displayName: 'Send Email',
|
||
|
name: 'emailSend',
|
||
|
icon: 'fa:envelope',
|
||
|
group: ['output'],
|
||
|
version: 2,
|
||
|
description: 'Sends an email using SMTP protocol',
|
||
|
defaults: {
|
||
|
name: 'Send Email',
|
||
|
color: '#00bb88',
|
||
|
},
|
||
|
inputs: ['main'],
|
||
|
outputs: ['main'],
|
||
|
credentials: [
|
||
|
{
|
||
|
name: 'smtp',
|
||
|
required: true,
|
||
|
},
|
||
|
],
|
||
|
properties: [
|
||
|
{
|
||
|
displayName: 'Resource',
|
||
|
name: 'resource',
|
||
|
type: 'hidden',
|
||
|
noDataExpression: true,
|
||
|
default: 'email',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Email',
|
||
|
value: 'email',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'hidden',
|
||
|
noDataExpression: true,
|
||
|
default: 'send',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Send',
|
||
|
value: 'send',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
...send.description,
|
||
|
],
|
||
|
};
|
||
|
|
||
|
export class EmailSendV2 implements INodeType {
|
||
|
description: INodeTypeDescription;
|
||
|
|
||
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
||
|
this.description = {
|
||
|
...baseDescription,
|
||
|
...versionDescription,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||
|
let returnData: INodeExecutionData[][] = [];
|
||
|
|
||
|
returnData = await send.execute.call(this);
|
||
|
|
||
|
return returnData;
|
||
|
}
|
||
|
}
|