verifyEmail( )


Deprecated

This method has been replaced with Verify Sender Email, and will be removed on September 30, 2025.

Verifies the sender's email using a verification code sent to the user's email address upon update.

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 verifyEmail(verificationCode: string): Promise<void>;
Method Parameters
verificationCodestringRequired

Verification code.

JavaScript
import { senderDetails } from "wix-email-marketing.v2"; // Sample verificationCode: "Sw4e7" export async function myVerifyEmailFunction(verificationCode) { try { const result = await senderDetails.verifyEmail(verificationCode); console.log("Success! Your email address has been verified"); return result; } catch (error) { console.error(error); } } /* Promise returns void */
Errors
400Invalid Argument

There is 1 error with this status code.

This method may also return standard errors. Learn more about standard Wix errors.

Did this help?