Invoice Inbox → Sheet
Parse billing emails, extract totals, log to a Sheet. Gmail filters included.
BullPack is a curated library of production-grade Google Apps Script packs. Free to browse. Packs from $29, or all of them for $99.
Read the source. No account required.
Pick any one pack. Yours forever.
Every pack — current and future. Lifetime updates.
Checkout and receipts are handled by QuasiLife, the operating company behind bulldo.gs. 14-day refunds — [email protected].
Mailparser and Dext do this for ~$30 a month. This pack is $49, once — and the code runs in your own Google account, no third party touching your mail.
// Pull unread invoices from Gmail → Sheet function fetchInvoices() { const sheet = SpreadsheetApp.getActiveSheet(); const query = 'from:(billing@) is:unread newer_than:7d'; const threads = GmailApp.search(query, 0, 50); threads.forEach(t => { const m = t.getMessages()[0]; sheet.appendRow([m.getDate(), m.getFrom(), m.getSubject()]); t.markRead(); }); }
Ten lines. A job that used to eat a whole Monday morning.
Parse billing emails, extract totals, log to a Sheet. Gmail filters included.
Sync Google Calendar events to HubSpot as meetings. Idempotent writes.
Pull metrics from Sheets, render an HTML email, ship every Monday 9am.
Archive stale files, dedupe by hash, move to cold storage on a schedule.
Route Google Form submissions by field to Slack, email, or a CRM.
Fire a Slack webhook on specific cell ranges. Debounced, signed.