mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Send Email Node): Smtp credential improvements (#10147)
This commit is contained in:
committed by
GitHub
parent
ada1256898
commit
dc13ceb416
@@ -26,6 +26,7 @@ const versionDescription: INodeTypeDescription = {
|
||||
{
|
||||
name: 'smtp',
|
||||
required: true,
|
||||
testedBy: 'smtpConnectionTest',
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
@@ -70,6 +71,10 @@ export class EmailSendV2 implements INodeType {
|
||||
};
|
||||
}
|
||||
|
||||
methods = {
|
||||
credentialTest: { smtpConnectionTest: send.smtpConnectionTest },
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
let returnData: INodeExecutionData[][] = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user