Does anyone know the simple answer to how to send the email to more than one recipient? I’ve tried what fells like every variation on the AND command, but no matter what I try, it negates the field entirely.
1 Like
I think for multiple recipients, it wants a text value that has all the addresses separated by commas… Try:
thisRow.Guests.Email.Join(",")
And if you need the last one:
thisRow.Guests.Email.Join(",") + "," + [Sarah Jean Kwapien].Email
3 Likes
Hey there!
@Nick_HE you actually don’t need the join(). You can just pass that field a list() and gmail reads it fine.
So you could probably do:
ListCombine(thisRow.guests.email, Sara.email)
5 Likes
@Nick_HE and @Scott_Collier-Weir, thank you both!
Both solutions worked great. Went with the ListCombine command as it was even shorter.
Much appreciated!
2 Likes
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.