Is it possible to create an email via make and send it to the entire list, instead of to a specific contact?

My module takes the blog posts and creates a personalized email to send, however in sendblue in the field it asks me for the name and email, but I would like to send it to the entire list, is it possible to do this?

Hey @Joao_victor_97, Welcome to the community.
You can easily do that by adding the list to a Google sheet or alternatively, if you don’t wanna add another application
Create an array of emails and then using an iterator to map the email field of iterator

You can use this setup



And you can map this field in the email address field of SendPulse
image

How is your entire list retrieved? Do you have a module that fetches this list of recipients?

If you have an array, simply use an Iterator-Aggregator combo to be able to map into the To field.

5e920ecceb64d1f0a6a7a57ce76252e5f18b5c6e

Every result (item/record) from a search module will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.

Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module.

Read This

The Array Aggregator module allows you to build a complex array of collections for a later module’s field to map multiple items (collections) to it.

Here is an example of using the “Target structure type” of an Array Aggregator module:

As you can see, the “Map” toggle on fields are used when you have an array. You can easily build an array variable to map to a field, by using an Array Aggregator module and select the “Target Structure Type” as the future field you want to map the array into.

samliew – request private consultation

Join the Make Fans Discord server to chat with other makers!

1 Like