n8n/packages/nodes-base/credentials/Smtp.credentials.ts
2024-05-07 17:38:23 +02:00

54 lines
923 B
TypeScript

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class Smtp implements ICredentialType {
name = 'smtp';
displayName = 'SMTP';
documentationUrl = 'sendemail';
properties: INodeProperties[] = [
{
displayName: 'User',
name: 'user',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: 465,
},
{
displayName: 'SSL/TLS',
name: 'secure',
type: 'boolean',
default: true,
},
{
displayName: 'Client Host Name',
name: 'hostName',
type: 'string',
default: '',
placeholder: '',
description: 'The hostname of the client, used for identifying to the server',
},
];
}