sendTest( )


Sends a test email. Use this method to preview your email campaign.

We strongly recommend you calling this method only a few times in a row, as it has a rate limit.

Authentication

This function requires elevated permissions and runs only on the backend and on dashboard pages.

Permissions
Access Verticals by Automations
Set Up Automations
Manage Email Marketing
Learn more about app permissions.
Method Declaration
Copy
function sendTest(campaignId: string, options: SendTestOptions): Promise<void>;
Method Parameters
campaignIdstringRequired

Campaign ID.


optionsSendTestOptions

Options for sending a test email.

JavaScript
import { campaigns } from "wix-email-marketing.v2"; // Sample campaignId = "ea46013c-bbbf-4617-ad5d-9247bc4c0970"; // Sample options value: // { // "emailSubject": "Hello", // "toEmailAddress": "clientname@email.com", // "language": "en", // "placeholders": {}, // "fromName": "User", // "replyToEmailAddress": "yourname@wix.com" // } export async function mySendTestFunction(campaignId, options) { try { const result = await campaigns.sendTest(campaignId, options); console.log("Success! Your test campaign has been sent."); // return result; } catch (error) { console.error(error); } } /* Promise returns void */
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?