Send test email by ID
Send a test of an email, identified by its ID, to up to 5 recipients. Recipients are always given as an array.
ReferenceView as Markdown
Send a test of an email, identified by its ID, to up to 5 recipients. Recipients are always given as an array.
Stay in the loop 🚀
Send a test email by ID through Subrite.
POST{baseUrl}/api/v1/communications/:id/email/test{
"communicationType": "marketing", // Possible values: "marketing" or "information"
"name": "coming from external",
"senderId": 2, // Use sender ID from Step 2 response
"consentId": null,
"segmentId": 1, // Use segment ID from Step 3 response
"subject": "email subject",
"emailPreviewText": "sample",
"templateId": 1, // Optional
"emailContent": "<div>hello world</div>",
"recipients": ["user@example.com", "user@example2.com"] // Always use an array for recipients, even when sending to a single address. Maximum 5 recipients allowed per test email.
}In the example, the senderId comes from the step 2 response and the segmentId from the step 3 response on the page.
{
success: true,
message: 'Test emails sent successfully',
id: 12212
}