🏒

Welcome to BillForge

Set up your business once. We'll remember it forever.

🏒

Choose a Bill Style

Pick the design that fits your brand

Add Invoice Items

Business Β· Template

#INV-000000

Line Items

Item Name
Qty
Price / unit
Amount

Taxes & GST

Optional β€” CGST, SGST, IGST…

No taxes. Tap "+ Add Tax" to add GST etc.

Grand Total β‚Ή0.00
πŸ“± Save as PDF on iPhone
Tap "πŸ–¨ Open Bill" β†’ Share icon β†’ Print β†’ pinch-zoom the preview β†’ Share again β†’ "Save to Files" βœ…

πŸ“€ Send Invoice

Send invoice directly to customer's email β€” no app opens.

⏳ Sending invoice...
βœ… Invoice sent successfully to customer!
❌ Failed to send. Please check the email address and try again.

Customer's phone number (optional). Opens WhatsApp with bill summary pre-filled.

Save this invoice to your Google Sheet. Each item gets its own row.

One row per item β€’ Invoice linked by number
⏳ Saving to Google Sheets...
βœ… Invoice saved to Google Sheets!
❌ Failed to save. Check the URL and try again.
πŸ“‹ How to set up Google Sheets (click to expand)
Step 1 – Create your Sheet
Go to sheets.google.com β†’ New spreadsheet β†’ Name it BillForge.
Add these headers in Row 1: Serial No | Invoice | Item | Qty | Cost | Date
Step 2 – Add Apps Script
In your sheet: Extensions β†’ Apps Script β†’ paste this code:
function doPost(e) {
  try {
    var data = JSON.parse(e.postData.contents);
    var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
    var rows = data.rows;
    for (var i = 0; i < rows.length; i++) {
      var r = rows[i];
      sheet.appendRow([r.serial, r.invoice, r.item, r.qty, r.cost, r.date]);
    }
    return ContentService
      .createTextOutput(JSON.stringify({status:'ok'}))
      .setMimeType(ContentService.MimeType.JSON);
  } catch(err) {
    return ContentService
      .createTextOutput(JSON.stringify({status:'error',message:err.toString()}))
      .setMimeType(ContentService.MimeType.JSON);
  }
}
Step 3 – Deploy
Click Deploy β†’ New deployment β†’ Type: Web App β†’ Execute as: Me β†’ Who has access: Anyone β†’ Deploy β†’ Copy the URL and paste it above.
Your business profile is saved β€” no re-entry needed