Hello. I am spinning my wheels on this and I am hopeful someone can help on the toCollection() scenario.
Here is my workflow that I want:
- Search Records in airtable
- Aggregate those records into a single output
- Use that output as a daily digest email
Here is the general email format that I would like:
Hello,
Below is a summary of the daily updates:
Record 1
date
title
description
Record 2
date
title
description
Record 3
date
title
description
Thank you!
I got the records to aggregate using the Array aggregator
but now I need to change the bundles into a Collection so I can then add that collection to a list in an email.
I can’t seem to figure out the right key/value need as it is returning an empty collection:
Here is the output of the array aggregator:
[
{
"array": [
{
"date": "2024-08-10",
"Title": "test1",
"Description": "testing the summary 1"
},
{
"date": "2024-08-10",
"Title": "test2",
"Description": "testing the summary 3"
},
{
"date": "2024-08-10",
"Title": "test3",
"Description": "testing the summary 3"
}
],
"__IMTAGGLENGTH__": 3
}
]
I feel like I am missing something very obvious and simple here. Can anyone help point me in the right direction?