🌟 8th Grade Girls 🌟
Split The POTFundraiser
Support Us & Win Big!
⭐ How It Works
- Tickets: 1 for $5 | 2 for $9 | 3 for $12 | 4 for $15
- 50% of the total pot goes to the lucky winner
- 50% goes to the 8th Grade class fund
- Fill out the form below & send payment via Zelle to complete your entry
🎟️ Choose Your Tickets
1 Ticket
1
ticket
$5
2 Tickets
2
tickets
$9
3 Tickets
3
tickets
$12
Best Value!
4 Tickets
4
tickets
$15
🎉 Drawing Date: Lag Ba'Omer 🎉
🛒 Your Order
Tickets selected:—
Total due:—
🎟️ Get Your Tickets Now!
Fill out your info below, then send payment via Zelle to complete your entry.
📋 Raffle Entries
⚙️ Google Sheets Setup (one time)
- Open Google Sheets and create a new spreadsheet named Raffle Entries.
- Go to Extensions → Apps Script.
- Delete any existing code and paste the script below, then click Save (💾).
- Click Deploy → New deployment → Web app. Set "Who has access" to Anyone. Click Deploy and copy the Web App URL.
- Paste the URL below and click Save.
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
if (sheet.getLastRow() === 0) {
sheet.appendRow(['Timestamp','First Name','Last Name','Phone','Email','Tickets','Amount','Notes']);
}
var p = e.parameter;
sheet.appendRow([p.date, p.firstName, p.lastName, p.phone, p.email, p.tickets, '$'+p.price, p.notes||'']);
return ContentService.createTextOutput("OK");
}
✅ URL saved! Submissions will now go to Google Sheets.