WorkspaceEmailSettings
The `WorkspaceEmailSettings` entity.
Definition
TypeScript
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. |