♥Frankfort, IllinoisServing Senior Communities within 15 Miles♥
Notre Mission
Bringing Joy to Every Door
Charlotte Parker is a nonprofit organization dedicated to spreading love and warmth to seniors in senior housing communities every Valentine’s Day.
Handcrafted with Love
Charlotte personally creates each Parisian-style bouquet with the finest seasonal blooms, wrapped in elegant French kraft paper and silk ribbon.
For Our Seniors
Seniors in senior housing communities receive fresh bouquets on Valentine’s Day — a simple gesture that brightens days and reminds them they are cherished.
Community Powered
Your donations fund every bouquet. 100% of proceeds go directly toward flowers, materials, and delivery within 15 miles of Frankfort, IL.
Nos Bouquets
The Signature Collection
Each arrangement is inspired by the romantic gardens of Paris — lush, soft, and abundantly beautiful.
Le Cœur de Paris
A lush arrangement of garden roses, lavender, and baby’s breath — the classic Parisian Valentine, wrapped in gold ribbon.
Jardin de Versailles
Soft peonies and French lavender in blush and periwinkle — delicate as a Monet garden, perfect for the soul.
Soleil d’Amour
Golden sunflowers and crimson roses tied with a satin bow — warm as a Parisian afternoon, radiant as joy itself.
Comment Ça Marche
How It Works
A simple cycle of generosity — from your donation to a senior’s smile on Valentine’s Day.
1
You Make a Donation
Any gift helps — $10 covers one bouquet, $50 brings flowers to five residents. Donations are collected throughout the year ahead of Valentine’s Day.
2
Charlotte Crafts the Bouquets
Using fresh blooms sourced locally, Charlotte handcrafts each arrangement in true Parisian style — wrapped beautifully with ribbon and a heartfelt card.
3
Senior Housing Registers
Facilities within 15 miles of Frankfort, IL submit a request form to receive delivery. We confirm capacity and coordinate with staff before the event.
4
Flowers Delivered on Valentine’s Day
On February 14th, Charlotte personally delivers the bouquets to each partnered facility, ensuring every resident receives their floral gift with love.
Recevoir Notre Service
Request Valentine’s Delivery
Is your senior housing facility within 15 miles of Frankfort, IL? We’d love to bring flowers to your residents.
Bringing Paris to Your Doorstep
Each Valentine’s Day, Charlotte personally delivers handcrafted bouquets to senior housing facilities in the Frankfort area — spreading joy, warmth, and the timeless Parisian spirit of love.
We serve facilities within a 15-mile radius of Frankfort, IL including New Lenox, Mokena, Tinley Park, Orland Park, and surrounding communities.
Frankfort, IL 60423 — Serving 15-Mile Radius
hello@charlotteparkerfloral.org
(773) 609-5858
“Every senior deserves to feel remembered.”
— Charlotte Parker, Founder
Send Us a Message
Merci Beaucoup!
Your donation has been received. Charlotte will craft beautiful bouquets to bring joy to seniors this Valentine’s Day. 🌸
/* recipient encoded — not visible on page */
const _e = atob(‘aGVsbG9AY2hhcmxvdHRlcGFya2VyZmxvcmFsLm9yZw==’);
async function handleServiceRequest() {
const facility = document.getElementById(‘s-facility’).value.trim();
const contact = document.getElementById(‘s-contact’).value.trim();
const email = document.getElementById(‘s-email’).value.trim();
const phone = document.getElementById(‘s-phone’).value.trim();
const city = document.getElementById(‘s-city’).value.trim();
const residents = document.getElementById(‘s-residents’).value.trim();
const address = document.getElementById(‘s-address’).value.trim();
const message = document.getElementById(‘s-message’).value.trim();
if (!facility || !email) {
alert(‘Please fill in your facility name and email address.’);
return;
}
const btn = document.querySelector(‘.btn-submit’);
btn.textContent = ‘Sending…’;
btn.disabled = true;
/* Using Web3Forms — free, no account needed, routes to _e */
try {
const res = await fetch(‘https://api.web3forms.com/submit’, {
method: ‘POST’,
headers: { ‘Content-Type’: ‘application/json’, ‘Accept’: ‘application/json’ },
body: JSON.stringify({
access_key: ‘cb7d9674-8a76-4f3a-a65d-175a77e61562’,
subject: ‘New Service Request — Charlotte Parker Floral’,
from_name: facility,
replyto: email,
‘Facility Name’: facility,
‘Contact Name’: contact,
‘Reply Email’: email,
‘Phone’: phone,
‘City’: city,
‘Approx Seniors’: residents,
‘Address’: address,
‘Message’: message || ‘(none)’
})
});
const data = await res.json();
if (data.success) {
document.getElementById(‘modal-title’).textContent = ‘Request Received! 🌸’;
document.getElementById(‘modal-msg’).textContent =
‘Thank you, ‘ + facility + (city ? ‘ in ‘ + city : ”) +
‘! Charlotte will reach out to ‘ + email +
‘ to confirm eligibility. We can\’t wait to bring flowers to your seniors! 💐’;
document.getElementById(‘modal’).classList.add(‘show’);
[‘s-facility’,’s-contact’,’s-email’,’s-phone’,’s-city’,’s-residents’,’s-address’,’s-message’]
.forEach(id => { const el = document.getElementById(id); if (el) el.value = ”; });
} else {
alert(‘Something went wrong sending your message. Please try again.’);
}
} catch(err) {
alert(‘Could not send your message. Please check your connection and try again.’);
}
btn.textContent = ‘Send Request ♥’;
btn.disabled = false;
}
function closeModal() {
document.getElementById(‘modal’).classList.remove(‘show’);
}
document.getElementById(‘modal’).addEventListener(‘click’, function(e) {
if (e.target === this) closeModal();
});