I am calling (iteratively) values in an object: each key is an integer and each value is a list of emails. I would like to call the list of emails as one continuos string, as in
"[email protected], [email protected], [email protected]"
rather than
[[email protected], [email protected], [email protected]]
so that I can use the MailApp.sendEmail class in Google Apps Script. How might I convert/correctly call the list of emails so that they are recognized by the MailApp Class?