Skip to content

Instantly share code, notes, and snippets.

@umechanhika
umechanhika / RecordPayment.gs
Last active October 10, 2024 07:51
Code to retrieve card usage notification emails from Gmail and log them in a spreadsheet budget tracker.
/**
* Gmailのカード利用通知を、スプレに転記する処理をまとめたgsファイル。
*/
const spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
const PAYMENT_MANAGEMENT_SHEET_NAME = "支出管理シート";
/**
* この処理を時間トリガーで毎分実行する
*/