top of page

View menu here

 

Introducing Lilly's Little Lunchbox Bundle Pack!

 

SAVE OVER $140.00!

 

Enjoy the convenience of 50 delicious meals over 10 weeks (5 meals per week).

 

Delight in the added bonus of one week's worth of meals absolutely free, along with an exclusive 10% discount each week.

 

Never worry about lunches again, and relish the flexibility to swap meals each week for a diverse and convenient solution - Please email info@lillyslittlelunchbox.com to swap meal options weekly. 

 

Only pay $67.50 per week for 9 weeks with week 10 meals free.

Term 1 Bundle Pack

$75.00 Regular Price
$67.50Sale Price
Price Options
Bundle Pack
Subscribe & Save - Week 10 meals FREE
$67.50every week for 9 weeks
  • Although we ensure the highest possible standard of food safety and quality control, we do understand that issues may happen from time to time given we are dealing with perishable food  and delivery matters that are sometimes outside of our control.

    If your LLL delivery is not up to the high standard that we aim to deliver please let us know asap (within 24 hr of delivery) by sending photos and brief description of the issue to info@lillyslittlelunchbox.com. 

bottom of page
import { ok, serverError } from 'wix-http-functions'; export function post_webhook(request) { // Extract data from the request body return request.body.text() .then(body => { const data = JSON.parse(body); // Parse JSON data console.log('Received webhook data:', data); // Optionally send this data to Zapier return fetch('https://hooks.zapier.com/hooks/catch/21241255/2zk3jow/', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) .then(() => ok({ body: 'Webhook received and forwarded to Zapier' })) .catch(error => serverError({ body: 'Error sending data to Zapier' })); }) .catch(error => serverError({ body: 'Error parsing webhook data' })); }