Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denomailer/config/client.ts>ResolvedClientOptions

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

Properties

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; }
client: { warning: "ignore" | "log" | "error"; preprocessors: Preprocessor[]; }