Simple converting of array structure so i can access it and email it

in airtable i have a table where i have fields:
Tname, Tlink
Tname is just a field containing names
Tlink is field where URL’s are

there are usually from 1 to 5 records.
so lets say i get this time 3.

name1,url1
name2,url2
name3,url3

i made a trigger and written script to send these records to make.com
in make.com i am trying to send an email using email module
in content of email i would like to have:

name1
url1
name2
url2
name3
url3

So i set up webhook.
in make.com under webhook LOGS i can see a body:

{
  "Tname": [
    "name1",
    "name2",
    "name3",
  ],
  "Tlink": [
    "url1",
    "url2",
    "url3",
  ]
}

How can i use array aggregator or iterator or whatever in make to create such email?
chatgpt points me to array agregator and iterator but it wont work as chatgpt says so.

Welcome to the Make community!

1. This forum might have or already changed your text

When pasting text into this forum, you should format the example text using the rich-text editor, otherwise the forum software might modify the displayed text, and you might get incorrect answers from others because of it.

Some things this forum software might do to mangle your text:

– remove extra spaces (which may be necessary)
– convert links to titles (when copied is incorrect)
– incorrect joined links
– convert single and double quotes to smart angled quotes ()
– emojis
– etc.

This interferes with you receiving correct answers, because it:

– makes JSON invalid (you can verify when copy-paste into https://jsonformatter.org)
– makes incorrect text examples when we need to build a pattern for text parsing

2. To prevent this in future, please format text in code blocks

A. Type code fence manually
Either add three backticks ``` before and after the text, like this:

```
content goes here
```

B. Highlight and click the format button
Or use the format code button in the editor:
Screenshot_2023-10-02_191027

3. You might need to re-copy the original text

Once the post has been submitted, it’s too late to format it since it’s already butchered, and you need to make a re-copy of the text, and format it before submitting the forum post.

Please let us know once you have corrected the issue. This will avoid others potentially providing wrong answers based on incorrect text in your question.

Thank you!

samliewrequest private consultation

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