When I use the Sendgrid Node, I sometimes dont know the recipients until Runtime.
Those recipients I retrieve from a global JSON array.
I then loop through that array and send one email to each email address in the array.
Is there a way I can just plug the array into the Sendgrid Node’s To or CC field and it would add them as additional CC or TO recipients?
How can I programatically send one email to multiple TO or CC recipients?
In the image above, if I wanted TO to be…
jane@doe.com, john@doe.com, scott@santa.com, turkey@giving.com,
Would I need to do string concatenation and plug it in with a single template variable that way?