top of page

Are you a Lilly's Little Lunchbox Shareholder?

In 2023, Lilly's Little Lunchbox proudly welcomed 280 investors from across Australia to join us in shaping our future success.

​

We maintain regular communication with our investors through social media updates and dedicated investor newsletters.

 

If you're an investor seeking updates, ASIC regulated financial reporting  or have any inquiries, please don't hesitate to reach out to us at info@lillyslittlelunchbox.com. We value your involvement and look forward to connecting with you.

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' })); }