top of page

Never think about lunches again! Our subscription packs are the way to go. Meals will be delivered to your door weekly. Subscription packs receive 10% off the total price of meals. 

 

You can choose which 5 meals you would like included in your subscription from any of our menu items. 

 

If you wish to make changes to your subscription order, please email us at lillyslittlelunchbox@outlook.com.

 

Fresh, ready made lunches delivered directly to your door. All lunchbox meals have been specifically designed for children with health & nutrition at the forefront of our mind without compromising on quality, taste & deliciousness. Packaged in environmentally friendly packaging so your children can reuse. 

 

What's included?

  • Healthy lunch meal packed full of all the good stuff
  • Fruit snack
  • Vegetable snack
  • Yummy energy snack

 

Choose your preferred delivery day and time at checkout. 

5 Meal Subscription Pack

$75.00 Regular Price
$67.50Sale Price
Price Options
5 Meal Subscription
Subscribe & Save
$67.50every week until canceled
  • 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' })); }