Skip to content

Instantly share code, notes, and snippets.

@nonsocchi
Created May 2, 2022 19:39
Show Gist options
  • Save nonsocchi/43a69a4e05178a6bec2f18b19abaa734 to your computer and use it in GitHub Desktop.
Save nonsocchi/43a69a4e05178a6bec2f18b19abaa734 to your computer and use it in GitHub Desktop.
// PARSING EMAIL MESSAGES...
function parseMessageBody(messages) {
...
}
// DISPLAY PARSED TRANSACTION DATA
function displayParsedData() {
var templ = HtmlService.createTemplateFromFile('parsed');
templ.txnData = parseMessageBody(getBankEmails());
return templ.evaluate();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment