I have an email configured in an event for the Custom Admin Notification Email and I wanted all group members listed in the email along with other registration info.
All the other info is displaying EXCEPT for the GROUP_MEMBERS. I must be missing something here but I added the code as suggested but nothing was pulled?
{GROUP_MEMBERS}{/GROUP_MEMBERS}
The group registrations were made and the records were added but I just didn't get the info in the Admin email. I did get 2 for the {GROUP_NUMBER} Any thoughts?
Here's all my code:
[NAME] has registered for the [EVENT_NAME].
Registration Details are as follows:
Registrant's Name: [NAME]
Address: [ADDRESS]
City (State,Country): [CITY], [STATE] [CANADIAN_PROVINCES] ([COUNTRY])
Zip Code: [ZIP]
Phone: [PHONE]
Email: [EMAIL]
Dietary Needs: [SPECIAL_DIETARY_NEEDS] - [OTHER_DIETARY_NEEDS]
Special Needs: [SPECIAL_NEEDS_SPRINGHILL] - [EXPLAIN_YES_SPRINGHILL]
Transportation: [TRANSPORTATION_SPRINGHILL]
Registration Fee: [AMOUNT]
Amount Paid: [AMOUNT_PAID]
Payment Type: [PAYMENT_TYPE]
Confirmation Number: [CONFIRM_NUM]
Member Status: [LIFETIME_MEMBER_SPRINGHILL]
[GROUP_NUMBER]
{GROUP_MEMBER} {/GROUP_MEMBER}
The GROUP_MEMBER tag works just fine, assuming you have the latest version. Your code you provided though is wrong. Whatever data you want to display in the email for each group member must be enclosed INSIDE OF the {GROUP_MEMBER} tag. You just have the tag sitting at the bottom of the email, enclosing nothing... so it's showing exactly what you set it to
{GROUP_MEMBER}
[FIRSTNAME] [LASTNAME]
[ADDRESS]
{/GROUP_MEMBER}
Something like that. Every field inside of the curly bracket tags will be displayed for each member in the group.[EMAIL]
{/GROUP_MEMBER}
Something like that. Every field inside of the curly bracket tags will be displayed for each member in the group.