Help

1 record going to multiple emails

Topic Labels: Automations Data
Solved
Jump to Solution
2032 1
cancel
Showing results for 
Search instead for 
Did you mean: 
AmandaC1121
5 - Automation Enthusiast
5 - Automation Enthusiast

I am needing help.

I am needing to send 1 record to a group of email in different states. 

Ex: 

One email request to and email group in TX, another different request to an email group in FL and have it automated when the state or country says the group. (TX to TX group, UK to UK group, FL to FL group) 

 

1 Solution

Accepted Solutions

Hey @AmandaC1121 , 

you need a field for email group, recommend to make it "single select" with option of your groups for example FL, UK. 

Option 1
Use formula that will return the correct value:

swithc({group_email},
"UK","uk@email_adress.com",
"FL","fl@email_adress.com"
....
)

in your automation you gonna use as email address the result form this formula. 

 

Option 2 Linked records
This is similar to the option 1 but it gives you the ability to keep updated your email addresses without editing the formula. 

1. Create a new table to store the group emails and the email address 
2. Link this table with your first main table 
3. use the filed "link to group emails" as the single select option for the group email. 
4. Create a lookup filed that will return the email address for the chosen group
5. Add in your automation the lookup filed value 

Option 3 Conditional logic in automation
In automation's settings you can use conditions to run the automation based on group mail value, in each case you gonna add a different email delivery address. 

 

Hope those options work for you, and of course for any kind of question please feel free to post here 🙂 

See Solution in Thread

1 Reply 1

Hey @AmandaC1121 , 

you need a field for email group, recommend to make it "single select" with option of your groups for example FL, UK. 

Option 1
Use formula that will return the correct value:

swithc({group_email},
"UK","uk@email_adress.com",
"FL","fl@email_adress.com"
....
)

in your automation you gonna use as email address the result form this formula. 

 

Option 2 Linked records
This is similar to the option 1 but it gives you the ability to keep updated your email addresses without editing the formula. 

1. Create a new table to store the group emails and the email address 
2. Link this table with your first main table 
3. use the filed "link to group emails" as the single select option for the group email. 
4. Create a lookup filed that will return the email address for the chosen group
5. Add in your automation the lookup filed value 

Option 3 Conditional logic in automation
In automation's settings you can use conditions to run the automation based on group mail value, in each case you gonna add a different email delivery address. 

 

Hope those options work for you, and of course for any kind of question please feel free to post here 🙂