mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
54 lines
923 B
TypeScript
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',
|
|
},
|
|
];
|
|
}
|