> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Send-As Alias

Update the settings of a specific `send-as` alias of a `Gmail` user.

<Note>
  External Documentation

  To learn more, visit the [Gmail documentation](https://developers.google.com/workspace/gmail/api/reference/rest/v1/users.settings.sendAs/update).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                    |
  | ---------------- | ---------------------------------------------------------------------------------------------- |
  | Display Name     | The name that appears in the `From:` header of mail sent using this alias.                     |
  | Is Default       | Select to make this address the default `From:` address of the account.                        |
  | Reply To Address | The email address to include in the `Reply-To:` header of mail sent using this alias.          |
  | Send-As Email    | The email address of the send-as alias to update.                                              |
  | Signature        | The `HTML` signature to include in messages.                                                   |
  | User ID          | The user email address. The special value `me` can be used to indicate the authenticated user. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                                                                                                                                    |
  | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Additional Parameters   | A JSON object for additional body parameters. Values specified in this parameter will override equivalent parameters.<br /><br />For example:<br /><pre><code>\{<br />    "first\_key": 12345,<br />    "second\_key": "some\_value"<br />}</code></pre>The object must follow the vendor's structure as defined in the [API documentation](https://developers.google.com/workspace/gmail/api/reference/rest/v1/users.settings.sendAs/update). |
  | Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.<br /><br />If not specified, the delegated user is the one provided in the connection.<br /><br />Has no effect when using an OAuth connection.<br /><br />NOTE: the connection details are not edited by this input.                                                                                                                   |
  | SMTP Host               | The hostname of the `SMTP` service.<br /><br />**Note:** Required when using an external `SMTP server` to send messages.                                                                                                                                                                                                                                                                                                                       |
  | SMTP Password           | The password used for authentication with the `SMTP` service.                                                                                                                                                                                                                                                                                                                                                                                  |
  | SMTP Port               | The port of the `SMTP` service.<br /><br />**Note:** Required when using an external `SMTP server` to send messages.                                                                                                                                                                                                                                                                                                                           |
  | SMTP Security Mode      | Select the protocol used to secure the communication with the `SMTP` service.<br /><br />**Note:** Required when using an external `SMTP server` to send messages.                                                                                                                                                                                                                                                                             |
  | SMTP Username           | The username used for authentication with the `SMTP` service.                                                                                                                                                                                                                                                                                                                                                                                  |
  | Treat As Alias          | Select whether Gmail treats this address as an alias for the primary email account.                                                                                                                                                                                                                                                                                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
  "sendAsEmail": string,
  "displayName": string,
  "replyToAddress": string,
  "signature": string,
  "isPrimary": boolean,
  "isDefault": boolean,
  "treatAsAlias": boolean,
  "smtpMsa": {
               object (SmtpMsa)
  },
  "verificationStatus": enum (VerificationStatus)
}
```

## Workflow Library Example

[Update Send As Alias with Gmail and Send Results Via Email](https://library.blinkops.com/workflows/update-send-as-alias-with-gmail-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/update-send-as-alias-with-gmail-and-send-results-via-email/canvas" />
</div>
