emailengine-client
Version:
A TypeScript client for the EmailEngine API
29 lines (28 loc) • 608 B
TypeScript
import { Authentication } from "./Authentication";
import { TLS } from "./TLS";
export declare class SmtpConfiguration {
/**
* Authentication info
*/
'auth': Authentication;
/**
* Set to true to use authentication server instead of username/password
*/
'authServer': boolean;
/**
* Hostname to connect to
*/
'host': string;
/**
* Service port number
*/
'port': number;
/**
* Should connection use TLS. Usually true for port 465
*/
'secure': boolean;
/**
* Optional TLS configuration
*/
'tls': TLS;
}