UpdateEmailConfigRequest
Request DTO for updating an existing email configuration
Properties
| Name | Type | Description |
|---|---|---|
| fromEmail | string | Updated sender email address (optional, null to keep existing). |
Updated sender email address (optional, null to keep existing). | ||
| fromName | string | Updated sender display name (optional, null to keep existing) |
Updated sender display name (optional, null to keep existing) | ||
| isDefault | boolean | Whether to set this as the tenant's default email configuration. |
Whether to set this as the tenant's default email configuration. | ||
| isSendShared | boolean | Whether all users in the tenant can send emails from this configuration. |
Whether all users in the tenant can send emails from this configuration. | ||
| isReadShared | boolean | Whether all users in the tenant can read the emails received in this mailbox. |
Whether all users in the tenant can read the emails received in this mailbox. | ||
| signature | string | Updated HTML email signature (empty string to clear, null to keep existing) |
Updated HTML email signature (empty string to clear, null to keep existing) | ||
| smtpSettings | SmtpSettingsRequest | |
| oAuthSettings | OAuthSettingsRequest | |
JSON Example
{
"fromEmail": "string",
"fromName": "string",
"isDefault": false,
"isSendShared": false,
"isReadShared": false
}