mbr_is_email_bounced
Usage
This shortcode determines the content to be included based upon a specific ActiveCampaign list's bounced status of the current logged in user.
Parameters
Parameters | Description |
---|---|
list_id | The 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_bounced] conditional branching is supported.
Nesting
Shortcode nesting within is NOT supported.
Examples
- Example 1
- Example 2
Will display "You are currently bounced status for our Advanced list." if the current logged in users status for the ActiveCampaign list with ID 23 is bounced:
[mbr_is_email_bounced list_id='23']
You are currently bounced status for our Advanced list.
[/mbr_is_email_bounced]
Will display "You are currently bounced status for our XYZ newsletter list." if the current logged in users status for the ActiveCampaign list with ID 17 is bounced. Otherwise a HTML link labelled "Click here to subscribe to the XYZ newsletter" will be displayed. When clicked the user will be subscribed to the list:
[mbr_is_email_bounced list_id='17']
You are currently bounced status for our XYZ newsletter list.
[ELSE_is_email_bounced]
[mbr_list subscribe='17' link_text='Click here to subscribe to the XYZ newsletter']
[/mbr_is_email_bounced]
API
For direct use in PHP code use the conditional function mbr_is_email_bounced($list_id)
in a structure as illustrated here:
$list_id = 5;
IF (mbr_is_email_bounced($list_id)) :
echo 'Bounced.';
ENDIF;