Skip to main content
Module

x/smtp/config.ts

SMTP implements for deno
Go to Latest
File
export interface ConnectConfig { host: string; port?: number; username: string; password: string;}
export interface SendConfig { to: string; from: string; subject: string; content: string;}