@types/nodemailer
Version:
TypeScript definitions for nodemailer
7 lines (4 loc) • 304 B
TypeScript
import SMTPConnection = require("../smtp-connection");
/** Resolves SMTP config for given key. Key can be a name (like 'Gmail'), alias (like 'Google Mail') or an email address (like 'test@googlemail.com'). */
declare function wellKnown(key: string): SMTPConnection.Options | false;
export = wellKnown;