AuthenticatedEmployeeNotificationAddress

This function returns the notification email address of the authenticated Marketing Cloud account user who is accessing the page. This is useful when creating customized pages for child Business Units (a feature available in earlier Enterprise 2.0 accounts).

Arguments

AuthenticatedEmployeeNotificationAddress()

This function does not accept any arguments.

NOTE: This function will only return the correct value when used in classic landing pages or microsites (a feature available in earlier Enterprise 2.0 accounts). When used in CloudPages, it will return the value related to the user who created the CloudPage, not a value related to the user who is accessing the page from the public URL.

Example

The following example displays the notification email address of the Marketing Cloud user accessing the page (with an active Marketing Cloud session) on a customized page (see note).

%%[

var @NotificationAddress

set @NotificationAddress = AuthenticatedEmployeeNotificationAddress()

]%%
<p>Your notification email address is <b>%%=v(@NotificationAddress)=%%</b></p>.
<p>You can update your email address on the Cloud Preferences page.</p>

Output

The function returns the email address associated with the Marketing Cloud user account (see note).

<p>Your notification email address is <b>sam@limedash.com</b></p>.
<p>You can update your email address on the Cloud Preferences page.</p>