Skip to main content
Module

x/smtp/config.ts

SMTP implements for deno
Latest
File
interface ConnectConfig { hostname: string; port?: number;}
interface ConnectConfigWithAuthentication extends ConnectConfig { username: string; password: string;}
interface SendConfig { to: string; from: string; subject: string; content: string; html?: string;}
export type { ConnectConfigWithAuthentication, ConnectConfig, SendConfig };