Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SmtpMsa

import type { SmtpMsa } from "https://googleapis.deno.dev/v1/gmail:v1.ts";

Configuration for communication with an SMTP service.

interface SmtpMsa {
host?: string;
password?: string;
port?: number;
securityMode?:
| "securityModeUnspecified"
| "none"
| "ssl"
| "starttls";
username?: string;
}

§Properties

§
host?: string
[src]

The hostname of the SMTP service. Required.

§
password?: string
[src]

The password that will be used for authentication with the SMTP service. This is a write-only field that can be specified in requests to create or update SendAs settings; it is never populated in responses.

§
port?: number
[src]

The port of the SMTP service. Required.

§
securityMode?: "securityModeUnspecified" | "none" | "ssl" | "starttls"
[src]

The protocol that will be used to secure communication with the SMTP service. Required.

§
username?: string
[src]

The username that will be used for authentication with the SMTP service. This is a write-only field that can be specified in requests to create or update SendAs settings; it is never populated in responses.