sendinblue multi email send. it’s a little rough around the edges but it works.
add this code to your bubble api body
{
“sender”:{
“email”:“no-reply@yourdomain”,
“name”:“”
},
“subject”:“”,
“templateId”:1,
“params”:{
“greeting”:“This is my default greeting”,
“headline”:“This is my default headline”
},
“to”:[
<
“email”:to email
>
]
}
- Set your API settings with your key
- You’ll need an element
from toolbox plugin called ListItem Expression
Set the listitemexpression to carry the email addresses in the correct format
'{ “email” : ’ + JSON.stringify(field(“email”)) + ‘}’
Get the data in the workflow to get the emails from the user not the email itself so don’t drill down to current users list of followers emails (for example) just current user list of followers. because the list item expression is pulling “email” right…

- Pass the data to the api and send the emails. you can check you have correct json format by using this http://devfiddle.org/json. copy and paste the result in the debugger and past it between the <> while removing the <>. If you get a correctly formatted json it will work.
call the list from the listitem expression and use the :joinwith to add a comma. Otherwise you’ll get bad format.
That’s it
Good luck