Email To* field of the Send Email action for version 5.0 of the o365 plugin, it seems even valid JSON does not get accepted

in the Email To* field of the Send Email action for version 5.0 of the o365 plugin, it seems even valid JSON does not get accepted… any solutions?

e.g.

{
  "attachment": [{
    "filename": "setup.exe",
    "content": "UmFwaWQ3IEluc2lnaHRDb25uZWN0Cg=="
  }],
  "bcc": [
     "user@example.com",
    "user@example.com"
  ],
  "body": "The workflow succeeded",
  "cc": [
    "user@example.com",
    "user@example.com"
  ],
  "email_from": "user@example.com",
  "email_to": [
    "user@example.com",
    "user2@example.com"
  ],
  "is_html": false,
  "subject": "Alert from InsightConnect"
}


or even just this section
{
  "email_to": [
    "user@example.com",
    "user2@example.com"
  ],
}

“Email To” is just an array of strings. So your input should look like this.

["user@example.com", "user2@example.com"]

you the man Joey!!

Glad I could help!