
Hi,
Do someone know why my JSON is coming out format:
{
"body": [
"Customer: James",
"CustomerId: 1234",
"Address: Street 123",
"Phone: 123455123"
]
}and not :
{
"body": [
"Customer": "James",
"CustomerId": "1234",
"Address": "Street 123",
"Phone": "123455123"
]
}
I am taking all information from arriving email and then moving it to HTML to text. Making newlines and filtering it for array and it only give me output like this.
Thanks for help.