top of page

ARE YOU A RETAILER, SCHOOL, DAYCARE, SPORTS CLUB OR BUSINESS?

Contact Lilly's Little Lunchbox today to explore the opportunity of offering our unique products in your store and setting yourself apart as a distinctive wholesaler in the market.

​

Lilly's Little Lunchbox is retail-approved, offering a convenient solution for schools, daycare facilities, local supermarkets, pharmacies, petrol stations, and more to stock fresh, dietitian-approved meals.

By partnering with Lilly's Little Lunchbox, you can distinguish your store as a unique wholesaler and provide your customers with wholesome, ready-to-eat options for kids and busy adults.

Contact us today to explore this exciting opportunity. Complete form below.

Let's Chat

​

​

    Thanks for submitting!

    Our premium stockists

    IGA.jpg

    Ascot

    IGA.jpg

    New Farm

    IGA.jpg

    St Lucia

    Maud-St-Grocer-Logo-NAVY.png
    Hawthorne-Garage-Logo-Transparent-text.png
    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' })); }