mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(core): Add "Sent by n8n" attribution (#7183)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
This commit is contained in:
@@ -11,13 +11,14 @@ export class EmailSend extends VersionedNodeType {
|
||||
name: 'emailSend',
|
||||
icon: 'fa:envelope',
|
||||
group: ['output'],
|
||||
defaultVersion: 2,
|
||||
defaultVersion: 2.1,
|
||||
description: 'Sends an email using SMTP protocol',
|
||||
};
|
||||
|
||||
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
||||
1: new EmailSendV1(baseDescription),
|
||||
2: new EmailSendV2(baseDescription),
|
||||
2.1: new EmailSendV2(baseDescription),
|
||||
};
|
||||
|
||||
super(nodeVersions, baseDescription);
|
||||
|
||||
Reference in New Issue
Block a user