Debra Sennefelder's Blog, page 3
March 7, 2025
Coffee & Chat #33
The post Coffee & Chat #33 appeared first on Debra Sennefelder.
March 4, 2025
5 Things That Inspire My Writing
Sign up today to receive regular updates from Debra about her Food Blogger mystery series and Resale Boutique mystery series, exclusive content and the recipe for her Divine Dark Chocolate Brownies.
Email Name Please wait... SUBSCRIBE NOWThank you for sign up!
var selectedLanguage = ""; var validationMessages = messages["en"]; if(selectedLanguage) { validationMessages = messages[selectedLanguage]; } window.addEventListener("load", function () { var form_container = document.querySelector(`#mailerlite-form_8[data-temp-id="67c7eed378ba9"] form`); let submitButton = form_container.querySelector('.mailerlite-subscribe-submit'); submitButton.disabled = true; fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ "action" : "ml_create_nonce", "ml_nonce" : form_container.querySelector("input[name='ml_nonce']").value }) }) .then((response) => response.json()) .then((json) => { if(json.success) { form_container.querySelector("input[name='ml_nonce']").value = json.data.ml_nonce; submitButton.disabled = false; } }) .catch((error) => { console.error('Error:', error); }); form_container.addEventListener('submit', (e) => { e.preventDefault(); let data = new URLSearchParams(new FormData(form_container)).toString(); let validationError = false; document.querySelectorAll('.mailerlite-form-error').forEach(el => el.remove()); Array.from(form_container.elements).forEach((input) => { if(input.type !== 'hidden') { if(input.required) { if(input.value == '') { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.required; input.after(error); return false; } } if((input.type == "email") && (!validateEmail(input.value))) { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.email; input.after(error); return false; } } }); if(validationError) { return false; } fade.out(form_container.querySelector('.mailerlite-subscribe-button-container'), () => { fade.in(form_container.querySelector('.mailerlite-form-loader')); }); fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: data }) .then((response) => { fade.out(form_container.querySelector('.mailerlite-form-inputs'), () => { fade.in(form_container.querySelector('.mailerlite-form-response')); }); }) .catch((error) => { console.error('Error:', error); }); }); }, false); var fade = { out: function(el, fn = false) { var fadeOutEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 1; } if (el.style.opacity > 0) { el.style.opacity -= 0.1; } else { el.style.display = 'none'; clearInterval(fadeOutEffect); } }, 50); if( typeof (fn) == 'function') { fn(); } }, in: function(el) { var fadeInEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 0; } if (el.style.opacity < 1) { el.style.opacity = Number(el.style.opacity) + 0.1; } else { el.style.display = 'block'; clearInterval(fadeInEffect); } }, 50); } }; function validateEmail(email){ if(email.match( /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/ )) { return true; } return false; }The post 5 Things That Inspire My Writing appeared first on Debra Sennefelder.
January 17, 2025
Coffee & Chat #32
Sign up today to receive regular updates from Debra about her Food Blogger mystery series and Resale Boutique mystery series, exclusive content and the recipe for her Divine Dark Chocolate Brownies.
Email Name Please wait... SUBSCRIBE NOWThank you for sign up!
var selectedLanguage = ""; var validationMessages = messages["en"]; if(selectedLanguage) { validationMessages = messages[selectedLanguage]; } window.addEventListener("load", function () { var form_container = document.querySelector(`#mailerlite-form_8[data-temp-id="678ba2528d17c"] form`); let submitButton = form_container.querySelector('.mailerlite-subscribe-submit'); submitButton.disabled = true; fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ "action" : "ml_create_nonce", "ml_nonce" : form_container.querySelector("input[name='ml_nonce']").value }) }) .then((response) => response.json()) .then((json) => { if(json.success) { form_container.querySelector("input[name='ml_nonce']").value = json.data.ml_nonce; submitButton.disabled = false; } }) .catch((error) => { console.error('Error:', error); }); form_container.addEventListener('submit', (e) => { e.preventDefault(); let data = new URLSearchParams(new FormData(form_container)).toString(); let validationError = false; document.querySelectorAll('.mailerlite-form-error').forEach(el => el.remove()); Array.from(form_container.elements).forEach((input) => { if(input.type !== 'hidden') { if(input.required) { if(input.value == '') { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.required; input.after(error); return false; } } if((input.type == "email") && (!validateEmail(input.value))) { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.email; input.after(error); return false; } } }); if(validationError) { return false; } fade.out(form_container.querySelector('.mailerlite-subscribe-button-container'), () => { fade.in(form_container.querySelector('.mailerlite-form-loader')); }); fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: data }) .then((response) => { fade.out(form_container.querySelector('.mailerlite-form-inputs'), () => { fade.in(form_container.querySelector('.mailerlite-form-response')); }); }) .catch((error) => { console.error('Error:', error); }); }); }, false); var fade = { out: function(el, fn = false) { var fadeOutEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 1; } if (el.style.opacity > 0) { el.style.opacity -= 0.1; } else { el.style.display = 'none'; clearInterval(fadeOutEffect); } }, 50); if( typeof (fn) == 'function') { fn(); } }, in: function(el) { var fadeInEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 0; } if (el.style.opacity < 1) { el.style.opacity = Number(el.style.opacity) + 0.1; } else { el.style.display = 'block'; clearInterval(fadeInEffect); } }, 50); } }; function validateEmail(email){ if(email.match( /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/ )) { return true; } return false; }
The post Coffee & Chat #32 appeared first on Debra Sennefelder.
December 7, 2024
Writer In The Kitchen: Pumpkin Chocolate Chip Mug Cake
Sign up today to receive regular updates from Debra about her Food Blogger mystery series and Resale Boutique mystery series, exclusive content and the recipe for her Divine Dark Chocolate Brownies.
Email Name Please wait... SUBSCRIBE NOWThank you for sign up!
var selectedLanguage = ""; var validationMessages = messages["en"]; if(selectedLanguage) { validationMessages = messages[selectedLanguage]; } window.addEventListener("load", function () { var form_container = document.querySelector(`#mailerlite-form_8[data-temp-id="675582839cd85"] form`); let submitButton = form_container.querySelector('.mailerlite-subscribe-submit'); submitButton.disabled = true; fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ "action" : "ml_create_nonce", "ml_nonce" : form_container.querySelector("input[name='ml_nonce']").value }) }) .then((response) => response.json()) .then((json) => { if(json.success) { form_container.querySelector("input[name='ml_nonce']").value = json.data.ml_nonce; submitButton.disabled = false; } }) .catch((error) => { console.error('Error:', error); }); form_container.addEventListener('submit', (e) => { e.preventDefault(); let data = new URLSearchParams(new FormData(form_container)).toString(); let validationError = false; document.querySelectorAll('.mailerlite-form-error').forEach(el => el.remove()); Array.from(form_container.elements).forEach((input) => { if(input.type !== 'hidden') { if(input.required) { if(input.value == '') { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.required; input.after(error); return false; } } if((input.type == "email") && (!validateEmail(input.value))) { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.email; input.after(error); return false; } } }); if(validationError) { return false; } fade.out(form_container.querySelector('.mailerlite-subscribe-button-container'), () => { fade.in(form_container.querySelector('.mailerlite-form-loader')); }); fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: data }) .then((response) => { fade.out(form_container.querySelector('.mailerlite-form-inputs'), () => { fade.in(form_container.querySelector('.mailerlite-form-response')); }); }) .catch((error) => { console.error('Error:', error); }); }); }, false); var fade = { out: function(el, fn = false) { var fadeOutEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 1; } if (el.style.opacity > 0) { el.style.opacity -= 0.1; } else { el.style.display = 'none'; clearInterval(fadeOutEffect); } }, 50); if( typeof (fn) == 'function') { fn(); } }, in: function(el) { var fadeInEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 0; } if (el.style.opacity < 1) { el.style.opacity = Number(el.style.opacity) + 0.1; } else { el.style.display = 'block'; clearInterval(fadeInEffect); } }, 50); } }; function validateEmail(email){ if(email.match( /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/ )) { return true; } return false; }The post Writer In The Kitchen: Pumpkin Chocolate Chip Mug Cake appeared first on Debra Sennefelder.
October 12, 2024
Christmas Traditions & A CORPSE AMONG THE CAROLERS

It’s moments like these, filled with simple joys and the comfort of community, that make the holiday season truly magical. What are your favorite holiday traditions? Share in the comments.I can’t wait for you to join Hope and the gang in this cozy holiday mystery! Stay tuned for more updates as we get closer to the release date!If you pre-order your copy of A CORPSE AMONG THE CAROLERS, you’ll receive a special gift. To receive yours, send a copy of your receipt to the email address acorpseamongthecarolers@gmail.com and then you’ll receive Hope’s holiday playlist, her holiday prep list and her Hope’s Cozy Kitchen recipe booklet filled with ten recipes. Offer expires on 11/11/24To order:BARNES & NOBLE | AMAZON
The post Christmas Traditions & A CORPSE AMONG THE CAROLERS appeared first on Debra Sennefelder.
October 11, 2024
Behind-the-scenes : The Recipe Review Crew
I’d like to take this moment and give a BIG shout-out to my amazing Recipe Review Crew—Tammy Barker, Maria Reyes Doktor, Chelsea Hatfield, Shannon Malloy, Donna Page, Debra Derbyshire, Kathleen Kendler, and Marijo Yates! 
With your enthusiasm and attention to every delicious detail, you’ve ensured that each recipe in my upcoming book is a delight for readers to savor. 
I couldn’t have done it without you, and now, I can’t wait for everyone to try these mouthwatering treats you helped perfect! Get ready for some seriously tasty surprises!I can’t wait for you to join Hope and the gang in this cozy holiday mystery! Stay tuned for more updates as we get closer to the release date!If you pre-order your copy of A CORPSE AMONG THE CAROLERS, you’ll receive a special gift. To receive yours, send a copy of your receipt to the email address acorpseamongthecarolers@gmail.com and then you’ll receive Hope’s holiday playlist, her holiday prep list and her Hope’s Cozy Kitchen recipe booklet filled with ten recipes. Offer expires on 11/11/24.To order:BARNES & NOBLE | AMAZONThe post Behind-the-scenes : The Recipe Review Crew appeared first on Debra Sennefelder.
September 28, 2024
A CORPSE AMONG THE CAROLERS & Pre-order gifts
The post A CORPSE AMONG THE CAROLERS & Pre-order gifts appeared first on Debra Sennefelder.
September 27, 2024
Friday Faves 9/27/24
The post Friday Faves 9/27/24 appeared first on Debra Sennefelder.
September 10, 2024
5 Harvest-Themed Cozy Mysteries to Savor This Fall
The fall festival in Blossom Valley is in full swing, with Civil War reenactors and festive attractions drawing crowds to Jacob Potter’s popular pumpkin farm. But the celebration turns dark when Potter is found dead under a tarp in Winnie’s pickup truck, shocking the entire town. As Winnie takes it upon herself to uncover the truth, she quickly realizes that the killer is determined to keep their deadly secrets hidden—no matter the cost.
WINE AND PUNISHMENT (A Literary Pub Mystery) by Sarah Fox
Sadie Coleman’s fresh start in Shady Creek, Vermont, takes a dark turn when her ex-boyfriend, Eric, is found dead near her newly opened literary pub. As Sadie settles into her new life amidst the town’s Autumn Festival festivities, she’s faced with the added challenge of solving Eric’s murder while dealing with a suspicious fire at a local antique shop. With the help of her aunt, friend, and pub patrons, Sadie must unravel the mystery before the killer strikes again.GONE FOR GOUDA (A Cheese Shop Mystery) by Korina MossCheesemonger Willa Bauer is preparing for the fall festival when a scandal erupts, revealing celebrity vegan chef Phoebe Winston is secretly a carnivore. After Phoebe is found murdered, Willa’s employee Archie becomes the prime suspect, prompting Willa to dig deep into the secrets of Yarrow Glen to clear his name and find the real killer.MEMORIES AND MURDER (A Tourist Trap Mystery) by Lynn CahoonWhen Jill hosts a talk on elder abuse at Coffee, Books, and More, she’s preoccupied with lunch until she discovers her Aunt Jackie has been receiving suspicious calls. As Jill investigates the scam targeting her aunt, the situation escalates with the murder of a Senior Project volunteer, revealing a dangerous killer who threatens everyone involved.DEATH BY HOT APPLE CIDER (A Bookstore Cafe Mystery) by Alex EricksonBookstore owner Krissy Hancock is supplying cider and overseeing the apple-bobbing booth at a town event when a patron tragically drowns during the festivities. Though her cider is cleared of blame, Krissy finds herself drawn into the investigation, especially with her policeman boyfriend aiming for a detective promotion. The victim, known for harassing local institutions over controversial literature, had made plenty of enemies—leaving Krissy to sort through a list of suspects and uncover the killer with a sinister agenda.As you immerse yourself in these delightful harvest-themed cozy mysteries, let the scents of cinnamon and pumpkin spice accompany you on your literary journey. Each story offers a unique blend of seasonal charm and suspense, perfect for cozying up on a crisp fall evening. If you have any favorite autumn mysteries of your own, we’d love to hear about them—share your recommendations in the comments below! Here’s to a season filled with cozy reads and delightful mysteries. Happy reading!Newsletter Signup!
Sign up today to receive regular updates from Debra about her Food Blogger mystery series and Resale Boutique mystery series, exclusive content and the recipe for her Divine Dark Chocolate Brownies.
Email Name Please wait... SUBSCRIBE NOWThank you for sign up!
var selectedLanguage = ""; var validationMessages = messages["en"]; if(selectedLanguage) { validationMessages = messages[selectedLanguage]; } window.addEventListener("load", function () { var form_container = document.querySelector(`#mailerlite-form_8[data-temp-id="66e156458b1f7"] form`); let submitButton = form_container.querySelector('.mailerlite-subscribe-submit'); submitButton.disabled = true; fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ "action" : "ml_create_nonce", "ml_nonce" : form_container.querySelector("input[name='ml_nonce']").value }) }) .then((response) => response.json()) .then((json) => { if(json.success) { form_container.querySelector("input[name='ml_nonce']").value = json.data.ml_nonce; submitButton.disabled = false; } }) .catch((error) => { console.error('Error:', error); }); form_container.addEventListener('submit', (e) => { e.preventDefault(); let data = new URLSearchParams(new FormData(form_container)).toString(); let validationError = false; document.querySelectorAll('.mailerlite-form-error').forEach(el => el.remove()); Array.from(form_container.elements).forEach((input) => { if(input.type !== 'hidden') { if(input.required) { if(input.value == '') { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.required; input.after(error); return false; } } if((input.type == "email") && (!validateEmail(input.value))) { validationError = true; let error = document.createElement("span"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.email; input.after(error); return false; } } }); if(validationError) { return false; } fade.out(form_container.querySelector('.mailerlite-subscribe-button-container'), () => { fade.in(form_container.querySelector('.mailerlite-form-loader')); }); fetch('https://debrasennefelder.com/wp-admin...', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', }, body: data }) .then((response) => { fade.out(form_container.querySelector('.mailerlite-form-inputs'), () => { fade.in(form_container.querySelector('.mailerlite-form-response')); }); }) .catch((error) => { console.error('Error:', error); }); }); }, false); var fade = { out: function(el, fn = false) { var fadeOutEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 1; } if (el.style.opacity > 0) { el.style.opacity -= 0.1; } else { el.style.display = 'none'; clearInterval(fadeOutEffect); } }, 50); if( typeof (fn) == 'function') { fn(); } }, in: function(el) { var fadeInEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 0; } if (el.style.opacity < 1) { el.style.opacity = Number(el.style.opacity) + 0.1; } else { el.style.display = 'block'; clearInterval(fadeInEffect); } }, 50); } }; function validateEmail(email){ if(email.match( /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/ )) { return true; } return false; }The post 5 Harvest-Themed Cozy Mysteries to Savor This Fall appeared first on Debra Sennefelder.
August 16, 2024
Coffee & Chat #31
The post Coffee & Chat #31 appeared first on Debra Sennefelder.


