---
title: "WorkspaceEmailSettings"
description: "The `WorkspaceEmailSettings` entity."
section: "Reference"
group: "Types"
order: 282
---

## Definition

```ts
interface WorkspaceEmailSettings {
  address: string;
  enabled: boolean;
  config: {
    maxBytes?: number | undefined;
    allowedSenders?: Array<string> | undefined;
  } | null;
}
```

## Fields

| Field     | Type                                                                                       | Notes                                                              |
| --------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------ |
| `address` | `string`                                                                                   | `required` — Full email address for the workspace.                 |
| `enabled` | `boolean`                                                                                  | `required` — Whether the workspace currently accepts inbound mail. |
| `config`  | `{ maxBytes?: number \| undefined; allowedSenders?: Array<string> \| undefined; } \| null` | `required` — Email gateway limits and allowlist; null when unset.  |
