I get below data after I do parse json.
[{
"Name": "ABC",
"tasks": [
{
"Title": "test1"
},
{
"Title": "test2"
},
{
"Title": "test3"
}]
},
{
"Name": "DEF",
"tasks": [
{
"Title": "test1"
},
{
"Title": "test2"
},
{
"Title": "test3"
}]
},
{
"Name": "GHI",
"tasks": [
{
"Title": "test1"
},
{
"Title": "test2"
},
{
"Title": "test3"
}]
}
]
I need to create html table like below and send it in email.
Can we format the JSON data in a way to send this data to create html table template to get the table in format shown above and sent this in email?