Resource: SendAs
Settings associated with a send-as alias, which can be either the primary login address associated with the account or a custom "from" address. Send-as aliases correspond to the "Send Mail As" feature in the web interface.
JSON representation |
---|
{ "sendAsEmail": string, "displayName": string, "replyToAddress": string, "signature": string, "isPrimary": boolean, "isDefault": boolean, "treatAsAlias": boolean, "smtpMsa": { object ( |
Fields | |
---|---|
sendAsEmail |
The email address that appears in the "From:" header for mail sent using this alias. This is read-only for all operations except create. |
displayName |
A name that appears in the "From:" header for mail sent using this alias. For custom "from" addresses, when this is empty, Gmail will populate the "From:" header with the name that is used for the primary address associated with the account. If the admin has disabled the ability for users to update their name format, requests to update this field for the primary login will silently fail. |
replyToAddress |
An optional email address that is included in a "Reply-To:" header for mail sent using this alias. If this is empty, Gmail will not generate a "Reply-To:" header. |
signature |
An optional HTML signature that is included in messages composed with this alias in the Gmail web UI. This signature is added to new emails only. |
isPrimary |
Whether this address is the primary address used to login to the account. Every Gmail account has exactly one primary address, and it cannot be deleted from the collection of send-as aliases. This field is read-only. |
isDefault |
Whether this address is selected as the default "From:" address in situations such as composing a new message or sending a vacation auto-reply. Every Gmail account has exactly one default send-as address, so the only legal value that clients may write to this field is |
treatAsAlias |
Whether Gmail should treat this address as an alias for the user's primary email address. This setting only applies to custom "from" aliases. |
smtpMsa |
An optional SMTP service that will be used as an outbound relay for mail sent using this alias. If this is empty, outbound mail will be sent directly from Gmail's servers to the destination SMTP service. This setting only applies to custom "from" aliases. |
verificationStatus |
Indicates whether this address has been verified for use as a send-as alias. Read-only. This setting only applies to custom "from" aliases. |
SmtpMsa
Configuration for communication with an SMTP service.
JSON representation |
---|
{
"host": string,
"port": integer,
"username": string,
"password": string,
"securityMode": enum ( |
Fields | |
---|---|
host |
The hostname of the SMTP service. Required. |
port |
The port of the SMTP service. Required. |
username |
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. |
password |
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. |
securityMode |
The protocol that will be used to secure communication with the SMTP service. Required. |
SecurityMode
A protocol that may be used to secure communication with the SMTP service.
Enums | |
---|---|
securityModeUnspecified |
Unspecified security mode. |
none |
Communication with the remote SMTP service is unsecured. Requires port 25. |
ssl |
Communication with the remote SMTP service is secured using SSL. |
starttls |
Communication with the remote SMTP service is secured using STARTTLS. |
VerificationStatus
Indicates whether ownership of an address has been verified for its use as a send-as alias.
Enums | |
---|---|
verificationStatusUnspecified |
Unspecified verification status. |
accepted |
The address is ready to use as a send-as alias. |
pending |
The address is awaiting verification by the owner. |
Methods |
|
---|---|
|
Creates a custom "from" send-as alias. |
|
Deletes the specified send-as alias. |
|
Gets the specified send-as alias. |
|
Lists the send-as aliases for the specified account. |
|
Patch the specified send-as alias. |
|
Updates a send-as alias. |
|
Sends a verification email to the specified send-as alias address. |