resolveActualFromAddress( )


Deprecated

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

Checks if the sender's email address will be used as from-address or replaced (not related to current sender details).

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 resolveActualFromAddress(
  fromAddress: string,
): Promise<ResolveActualFromAddressResponse>;
Method Parameters
fromAddressstringRequired

User's provided address from which to send email marketing campaign.

Returns
Return Type:Promise<ResolveActualFromAddressResponse>
JavaScript
import { senderDetails } from "wix-email-marketing.v2"; export async function myResolveActualFromAddressFunction(fromAddress) { try { const result = await senderDetails.resolveActualFromAddress(fromAddress); console.log("Success! From address has been resolved."); return result; } catch (error) { console.error(error); } } /* Promise returns: * { * "actualFromAddress": "myaddress@wix.com" * } */
Errors

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

Did this help?