UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

38 lines (37 loc) 847 B
import { Options } from "../../../../misc/Options"; /** * Registers a new SMTP gateway */ export declare class RegisterNewGatewayOptions extends Options { /** * Override the EENGINE_TIMEOUT environment variable for a single API request (in milliseconds) */ 'x-ee-timeout'?: number | undefined; /** * Register New Gateway Details */ 'body': { /** * Gateway ID */ gateway: string; /** * Account Name */ name: string; user?: string; pass?: string; /** * Hostname to connect to */ host: string; /** * Service port number */ port: number; /** * Should connection use TLS. Usually true for port 465 */ secure?: boolean; }; }