I´m using dynamic template to send emails from Adalo. It works fine when I send only to one recipient. But is it possible to send to multiple?
The JSON should be like this:
{
“personalizations”: [
{
“to”: [
{ “email”: “recipient1@example.com” },
{ “email”: “recipient2@example.com” }
],
…
I only want to use one text input to enter the recipient emails… Is this possible to solve?