Reputation: 26717
I'm trying to create a Logic App to mass mailing all my contacts (more than 30K). Basically I got a very simple flow where I extract contacts from my DB and then I need to send a static email to each of them.
On Logic app I can only find Gmail and Sendgrid (max 1k according to the documentation) actions but they only allow a limited number of email (generally 1k). Is there any Action that I can use for this purpose?
Upvotes: 0
Views: 1137
Reputation: 15724
Since you extract contacts from DB, so you can separate the contacts to three lists(each list contains 1000 contacts). In each list of contacts, add semicolon between every emaill address by code. Then use a "For each" to loop the "Send email (V4)" action of "SendGrid" connector and put each list of contacts into the "To" input box of "Send email (V4)" action.
Upvotes: 1