TestEmailRequest
Request to send a test email for verifying configuration
Properties
| Name | Type | Description |
|---|---|---|
| recipientEmail | string | Email address to send the test email to |
Email address to send the test email to | ||
| recipientName | string | Optional name of the recipient |
Optional name of the recipient | ||
| subject | string | Optional custom subject line. Defaults to "Test Email - Configuration Verification" if not provided. |
Optional custom subject line. Defaults to "Test Email - Configuration Verification" if not provided. | ||
| htmlBody | string | Optional custom HTML body. Defaults to a standard verification message if not provided. |
Optional custom HTML body. Defaults to a standard verification message if not provided. | ||
| plainTextBody | string | Optional custom plain text body. Defaults to a standard verification message if not provided. |
Optional custom plain text body. Defaults to a standard verification message if not provided. | ||
JSON Example
{
"recipientEmail": "string",
"recipientName": "string",
"subject": "string",
"htmlBody": "string",
"plainTextBody": "string"
}