What is your goal?
I am building a daily delivery briefing scenario.
The goal is:
Google Sheets Search Rows reads delivery orders from an Orders_Log sheet.
For each row, Tools → Set multiple variables creates a formatted text variable called briefing_row.
Array aggregator aggregates all briefing_row values.
Email sends an HTML briefing with the list of orders.
HTTP sends the same briefing to WhatsApp.
I need to print all briefing_row values inside the Email HTML body, preserving line breaks.
What is the problem & what have you tried?
The scenario runs successfully and all modules are green.
Tools → Set multiple variables creates briefing_row correctly.
Example Tools output:
briefing_row:
Order #1076
Fascia: AM2 — 11:30–13:00
Comune: Mombercelli
Area: AREA_B
Accommodation / Private home: villa test 8
Indirizzo: via test 8
WhatsApp cliente: 393356029467
Note: chiavi nel cassetto
Totale: €126.30
Array aggregator output also contains briefing_row inside Array.
The problem is in the Email module.
If I try:
join(map(6.Array; “briefing_row”); “
”)
the email body is empty.
If I try direct extraction, the email prints the object instead of only the text, for example:
{“briefing_row”:“Order #1076\n\nFascia: AM2 — 11:30–13:00…”}
I need the correct Make formula to print only the briefing_row text from the Array aggregator in the Email HTML body, ideally converting line breaks \n into
.
Error messages or input/output bundles
There is no execution error. All modules are green.
Relevant scenario flow:
Google Sheets — Search Rows
→ Iterator
→ HTTP
→ Tools — Set multiple variables
→ Array aggregator
→ Email
→ HTTP WhatsApp
Tools module output:
Variable name: briefing_row
Variable value:
Order #1076
Fascia: AM2 — 11:30–13:00
Comune: Mombercelli
Area: AREA_B
Accommodation / Private home: villa test 8
Indirizzo: via test 8
WhatsApp cliente: 393356029467
Note: chiavi nel cassetto
Totale: €126.30
Array aggregator output structure:
Array
1
briefing_row: Order #1076 …
Email HTML body currently contains a section like:
What should the correct formula be?
Should it be something like:
join(map(6.Array; “briefing_row”); “
”)
or:
replace(join(map(6.Array; “briefing_row”); “\n\n”); “\n”; “
”)
or a different get()/map() syntax?

