> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # IdentifySenderAddress # Package: emailMarketing # Namespace: CampaignService # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/emails/email-marketing/campaign/identify-sender-address.md ## Permission Scopes: Manage Email Marketing: SCOPE.DC-PROMOTE.EMAIL-MARKETING ## Introduction Checks if the sender's email address will be used as the "from" address or will it be replaced and to what exactly. --- ## REST API ### Schema ``` Method: identifySenderAddress Description: Checks if the sender's email address will be used as the "from" address or will it be replaced and to what exactly. URL: https://www.wixapis.com/email-marketing/v1/identify-sender-address Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: emailAddress Method parameters: param name: emailAddress | type: emailAddress | description: Email address to verify. | required: true Return type: IdentifySenderAddressResponse - name: senderAddress | type: string | description: Actual "from" address that will be used for sending emails. ``` ### Examples ### Identify Sender Address ```curl curl -X POST 'https://www.wixapis.com/email-marketing/v1/identify-sender-address' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' -d '{ "emailAddress": "john.doe@gmail.com" }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.emailMarketing.CampaignService.identifySenderAddress(emailAddress) Description: Checks if the sender's email address will be used as the "from" address or will it be replaced and to what exactly. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: emailAddress Method parameters: param name: emailAddress | type: string | description: Email address to verify. | required: true Return type: PROMISE - name: senderAddress | type: string | description: Actual "from" address that will be used for sending emails. ``` ### Examples ### identifySenderAddress ```javascript import { campaigns } from '@wix/email-marketing'; async function identifySenderAddress(emailAddress) { const response = await campaigns.identifySenderAddress(emailAddress); }; ``` ### identifySenderAddress (with elevated permissions) ```javascript import { campaigns } from '@wix/email-marketing'; import { auth } from '@wix/essentials'; async function myIdentifySenderAddressMethod(emailAddress) { const elevatedIdentifySenderAddress = auth.elevate(campaigns.identifySenderAddress); const response = await elevatedIdentifySenderAddress(emailAddress); } ``` ### identifySenderAddress (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { campaigns } from '@wix/email-marketing'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { campaigns }, // Include the auth strategy and host as relevant }); async function identifySenderAddress(emailAddress) { const response = await myWixClient.campaigns.identifySenderAddress(emailAddress); }; ``` ---