{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PostPortalEmailConfig",
"title": "PostPortalEmailConfig",
"type": "object",
"properties": {
"domain_name": {
"description": "The domain name to use for sending emails. Null means default.",
"type": "string",
"nullable": true
},
"from_name": {
"description": "The name to display in the 'From' field of emails.",
"type": "string",
"nullable": true
},
"from_email": {
"description": "The email address to use in the 'From' field.",
"type": "string",
"format": "email",
"nullable": true
},
"reply_to_email": {
"description": "The email address to use in the 'Reply-To' field. 'Reply-To' header is omitted if omitted or null.",
"type": "string",
"format": "email",
"nullable": true
}
},
"additionalProperties": false
}