Aug 10, 2023 10:38 PM
Hey all, so I'm working on creating a base that will be used to track multiple event registrations with a form that has option for the registrar to identify which event(s) they are attending. Once the form is submitted, automations will assign them to the event they said they would attend via. a check in grid.
Currently, I have the email automation to send confirmation emails based off what they said they will attend, but I realized if someone plans to attend all five events, they will get a confirmation email for each event, that's potentially 5 different emails which isn't the most ideal.
I'd like to concatenate the email automation, that will be based off the events they select. i.e., if they plan to attend Event 1, 3, and 5. A single email will be distributed, confirming they signed up for 1, 3 and 5—instead of 3 different emails for each event.
I read around that this might involve creating a javascript but was hoping there is another way before I teach myself entry level javascript for this idea.
Another method I read would be creating an automation for every variation, but with the number of events not yet determined, it could easily come up to 100+ automations which is also not ideal, and I fear this creates a window for disaster.
Some More Details
- The event choices are a multiple select at the moment of this post.
- The current automation message is using some of the rich text formatting such as **[Event Name 1](Webpage Link)** and [Location](Google Maps Link)—I'd like to keep this if possible, so the email brings traffic to the website event page, but if this has to be lost, then it has to be lost.
- I saw I could click the blue + and could have the email automation sort of do what I'm looking for based off the data's recorded selection. However, would it be possible to hyperlink each to a specific website page? Would I have to change it from multi-select to pull it off? Have not tested this possibility prior to this post but may check it out to see where the rabbit hole leads.
Many thanks in advance!
Solved! Go to Solution.
Aug 11, 2023 08:05 PM
Looks like you're making progress!
I've put together the formula field thing I mentioned here and you can duplicate it to view the formulas, and have made it work with an "Event" table like you mentioned.
The workflow would be for users to select the events they wish to attend via a linked field within the form, and once a form is submitted an email will be sent via automation that'll take the text from the formula field, and it would look something like this:
If you really want to use a multiple select instead that's possible too, would just need another automation that would link the records appropriately based on the selected multiple select field options
Aug 11, 2023 07:08 AM
Hmm, try creating a formula field that'll display the email text message that you want based on the events that are selected? You can then just use that formula field's text in your email, and it would retain the rich text formatting that you expect
That way you'll just have a single automation that fires when a form gets submitted, and it'll send one email with all the text you want in it, no script needed
Aug 11, 2023 07:34 AM - edited Aug 11, 2023 07:36 AM
Hi Adam, not sure if I fully understand what you mean about using the formula field's text in the email. In my screenshots I have one of the grids and then the automations 1 - 5, where instead of 5 different email automations, its one automation that'll have specific text to the event.
I have the email below for more context, where it says "Event Name 1"—I'd want it to spit out the event name based off the data, but include a specific hyperlink for each event name. Kind of like an '=IF' statement where if it reads event 2, it'll include event 2 + hyperlink in the email. Sorry for the confusion
Message
Hello <Name>,
This email is to confirm that you are **registered** to attend in-person **[Event Name 1](Webpage Link)** on <Date and Time> (EDT) at [Location](Google Maps Link).
You will receive a reminder email with further instructions prior to the event. If you are no longer able to participate or have any further questions, please email **[email](<mailto:email)**.
Aug 11, 2023 07:48 AM
Messed around with that blue check I mentioned in my initial post, it does like 50% of what I want, where it'll look at the events attending column, and send an email based off that selection including a hyperlink. But I don't want it to combine all 5 events like that and sent a single link. I'm looking for each event to be its own link. Hmmmm
Aug 11, 2023 02:03 PM - edited Aug 11, 2023 04:04 PM
UPDATE
Made some major progress on this, but ran into another roadblock.
1. Created another table that only holds the event information, combining the event name and event webpage link using the below formula, to give me the Hyperlink Column.
The new pickle is, the Hyperlink automation will work almost as intended. It will populate whenever a new record is created, but it will populate the entire list of hyperlinks, instead of what is being reflected in Events Attending and/or Events Attending Linked].
This is the final hurdle because then, I can create the email automation, based off the Hyperlink column, sending registrars a confirmation email based only on what events they selected. Homestretch.
EDIT
Can't seem to do anything about the list population, seems to be a limitation of the automation selections. Probably fixed by creating a script but not sure,
Aug 11, 2023 08:05 PM
Looks like you're making progress!
I've put together the formula field thing I mentioned here and you can duplicate it to view the formulas, and have made it work with an "Event" table like you mentioned.
The workflow would be for users to select the events they wish to attend via a linked field within the form, and once a form is submitted an email will be sent via automation that'll take the text from the formula field, and it would look something like this:
If you really want to use a multiple select instead that's possible too, would just need another automation that would link the records appropriately based on the selected multiple select field options
Aug 14, 2023 07:16 AM
Woah this is right on the nose, amazing! Adam you're an MVP!