Skip to main content
Module

x/denomailer/mod.ts>ClientOptions

A SMTP-Client implementation for deno (to send mails!)
Go to Latest
interface ClientOptions
import { type ClientOptions } from "https://deno.land/x/denomailer@1.4.0/mod.ts";

Options to create a new SMTP CLient

Properties

optional
debug: { log?: boolean; allowUnsecure?: boolean; encodeLB?: boolean; noStartTLS?: boolean; }
connection: { hostname: string; port?: number; auth?: { username: string; password: string; }; tls?: boolean; }
optional
pool: { size?: number; timeout?: number; } | boolean

Create multiple connections so you can send emails faster!

optional
client: { warning?: "ignore" | "log" | "error"; preprocessors?: Preprocessor[]; }