Skip to content

This store requires javascript to be enabled for some features to work correctly.

risotto
ready

Mix of
shipping

Cicerata al Miele di Castagno - Casafolino.com
Chestnut Honey Cicerata
Simple, quick and traditional: the Chestnut Honey Cicerata is one of the most delicious typical Calabrian desserts of the Christmas season, made with only three ingredients.
Sfoglia con Confettura al Peperoncino e Meringa - Casafolino.com
Chips with Chili Jam and Meringue
Simplicity and taste for a dessert with a sweet-spicy touch. It only takes 20 minutes to bake the Puff Pastry with Chili Jam and Meringue!
Melanzane al Miele e Peperoncino - Casafolino.com
Eggplant with Honey and Chili
Appetizer or side dish. Passion and sweetness. The Eggplants with Honey and Chili are a combination to enjoy in just 10 minutes!
Cicerata al Miele di Castagno - Casafolino.com
Chestnut Honey Cicerata
Simple, quick and traditional: the Chestnut Honey Cicerata is one of the most delicious typical Calabrian desserts of the Christmas season, made with only three ingredients.
Sfoglia con Confettura al Peperoncino e Meringa - Casafolino.com
Chips with Chili Jam and Meringue
Simplicity and taste for a dessert with a sweet-spicy touch. It only takes 20 minutes to bake the Puff Pastry with Chili Jam and Meringue!
Melanzane al Miele e Peperoncino - Casafolino.com
Eggplant with Honey and Chili
Appetizer or side dish. Passion and sweetness. The Eggplants with Honey and Chili are a combination to enjoy in just 10 minutes!
// --- Funzione Shopify --- async function findOrder(email, env) { if (!email) return null; const url = `https://${env.SHOPIFY_STORE}/admin/api/2025-01/orders.json?email=${encodeURIComponent( email )}&status=any&limit=1`; const res = await fetch(url, { headers: { "X-Shopify-Access-Token": env.SHOPIFY_API_KEY, "Content-Type": "application/json", }, }); if (!res.ok) return null; const data = await res.json(); return data.orders?.[0] || null; } // --- Crea ticket / invia email --- async function sendTicket(customer, env) { if (!env.WEBHOOK_TICKET_URL) return; await fetch(env.WEBHOOK_TICKET_URL, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ customer, message: "Nuovo ticket aperto da Angela Chat", source: "Chat Casa Folino", }), }); }