After combining different scripts, I am struggling to properly input data into the code.
Email Input:
*Status:*
*Date:* 03/31/2020
*WorkOrder:* 123456-1
*DMSShipDate:* 03/31/2020
*PONumber:* 8675309
*Company:* Test
New Script
var ui = SpreadsheetApp.getUi();
function onOpen(e){
ui.createMenu("Import Email").addItem("Import Email", "getGmailEmails").addToUi();
}
// More script and functions here
Outcome:
I have been getting unexpected results like [Ljava.lang.Object;@488e1851, [Ljava.lang.Object;@5c588720 in my columns when trying to get the data in correctly. Ive attempted methods like JSON.Stringify and toString() without success.