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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
923 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,
},
{
displayName: 'Client Host Name',
name: 'hostName',
type: 'string',
default: '',
placeholder: '',
description: 'The hostname of the client, used for identifying to the server',
},
2019-06-23 03:35:23 -07:00
];
}