mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
d2756de090
* Add Variables JSON to Mailjet Batch send * ⚡ Improvements * ⚡ Add credential verification * ⚡ Small improvement Co-authored-by: Marcin Koziej <marcin@cahoots.pl>
32 lines
697 B
TypeScript
32 lines
697 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MailjetEmailApi implements ICredentialType {
|
|
name = 'mailjetEmailApi';
|
|
displayName = 'Mailjet Email API';
|
|
documentationUrl = 'mailjet';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Secret Key',
|
|
name: 'secretKey',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Sandbox Mode',
|
|
name: 'sandboxMode',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Allow to run the API call in a Sandbox mode, where all validations of the payload will be done without delivering the message',
|
|
},
|
|
];
|
|
}
|