How can I send an email notification to multiple recipients that are in the same area as the person submitting the app sheet form,

I have an app sheet where users input their information and choose which area they are from. I want to be able to send email notifications when they submit but also send that email to other people in the same area as them, how can I do so. Please let me know

0 3 125
3 REPLIES 3


This is what Iโ€™ve done so far

Hi @mshello

Welcome to the community !

What about this ?

SELECT(PeopleToInform[Email address],
[Market Area]=LOOKUP(USEREMAIL(),"PeopleToInform","Email address", "Market Area")
)

For efficiency, I would use a slice and run the email on this slice.
Slice โ€œsameAreaPeopleโ€, with row filter condition:
[Market Area]=LOOKUP(USEREMAIL(),"PeopleToInform","Email address", "Market")

Then, expression for email list :
sameAreaPeople[Email Address]

For reference:

thank you so much!!

Top Labels in this Space