Usage:
This shortcode provide conditional logic to display content alternatives dependent upon whether a contact’s email address is unconfirmed for the requested list.
[ELSE_is_email_unconfirmed] conditional branching is supported.
Shortcode nesting is NOT supported.
Parameters:
list_id | The list id you want to check, for unconfirmed email status of the logged in contact. Default: none. Required: yes. |
Example:
[mbr_is_email_unconfirmed list_id='5'] Display this if contact is a SINGLE opt in. [ELSE_is_email_unconfirmed] Otherwise, display this. [/mbr_is_email_unconfirmed]
API:
To use this shortcode in your own PHP code, please use as follows:
// Please note that when using PHP, you must code your own true and false branches $list_id = 5; IF (mbr_is_email_unconfirmed($list_id)) : echo 'You are not confirmed for our content mailing.'; ENDIF; </code>