init: n8n community node for sending emails rendered from Markdown via emailmd

This commit is contained in:
2026-03-28 14:10:06 +01:00
commit 6cdd6b0ba1
10 changed files with 10013 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class SmtpCredential implements ICredentialType {
name = 'smtp';
displayName = 'SMTP';
documentationUrl = 'https://docs.n8n.io/integrations/builtin/credentials/sendemail/';
properties: INodeProperties[] = [
{
displayName: 'Host',
name: 'host',
type: 'string',
default: '',
placeholder: 'smtp.example.com',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: 465,
},
{
displayName: 'Secure',
name: 'secure',
type: 'boolean',
default: true,
description: 'Whether to use SSL/TLS',
},
{
displayName: 'User',
name: 'user',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
}