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
§
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.