n8n/packages/nodes-base/credentials/Smtp.credentials.ts

46 lines
720 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2019-06-23 03:35:23 -07:00
export class Smtp implements ICredentialType {
name = 'smtp';
2019-06-23 03:35:23 -07:00
displayName = 'SMTP';
documentationUrl = 'sendemail';
properties: INodeProperties[] = [
2019-06-23 03:35:23 -07:00
{
displayName: 'User',
name: 'user',
type: 'string',
2019-06-23 03:35:23 -07:00
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
2019-06-23 03:35:23 -07:00
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
2019-06-23 03:35:23 -07:00
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
2019-06-23 03:35:23 -07:00
default: 465,
},
{
displayName: 'SSL/TLS',
name: 'secure',
type: 'boolean',
2019-06-23 03:35:23 -07:00
default: true,
},
];
}