Gmail

create_alias

Create a forwarding address (e.g. [email protected]) that routes to up to 20 destination addresses. Grant-scoped connections may only route to their own mailboxes.

Remote faivelo/mail

Remote (network-hosted)

Other tools also called create_alias? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "description": "Domain to create the alias on"
    },
    "localPart": {
      "type": "string",
      "pattern": "^[a-zA-Z0-9._%+-]+$",
      "maxLength": 64,
      "minLength": 1,
      "description": "The part before the @"
    },
    "destinations": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "email"
      },
      "maxItems": 20,
      "minItems": 1,
      "description": "Where mail to this alias is delivered"
    }
  }
}
          

Provider

Gmail →