Skip to main content

mbr_is_email_active

Usage

This shortcode determines the content to be included based upon a specific ActiveCampaign list's active(subscribed) status of the current logged in user.

Parameters

ParametersDescription
list_idThe ActiveCampaign list ID whose status should be evaluated for the current logged in user. The list_id can be determined in ActiveMember360, Utilities, Lists.
Default: none.
Required: yes.

Validity

This shortcode is only evaluated for logged in users who also exist as contacts within ActiveCampaign otherwise it is ignored.

Conditional Branching

[ELSE_is_email_active] conditional branching is supported.

Nesting

Shortcode nesting within is NOT supported.

Examples

Will display "You are currently subscribed to our Advanced list." if the current logged in users status for the ActiveCampaign list with ID 23 is active(subscribed):

[mbr_is_email_active list_id='23']
You are currently subscribed to our Advanced list.
[/mbr_is_email_active]

API

For direct use in PHP code use the conditional function mbr_is_email_active($list_id) in a structure as illustrated here:

$list_id = 5;
IF (mbr_is_email_active($list_id)) :
echo 'You have an active email and are confirmed to receive our content mailing.';
ENDIF;