WorkspaceEmailSettings

The `WorkspaceEmailSettings` entity.

Definition

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

Fields

FieldTypeNotes
addressstringrequired — Full email address for the workspace.
enabledbooleanrequired — Whether the workspace currently accepts inbound mail.
config{ maxBytes?: number | undefined; allowedSenders?: Array<string> | undefined; } | nullrequired — Email gateway limits and allowlist; null when unset.