fix: update default admin email fallback address

Changed the fallback admin email from 'hello@' to 'admin@attunehearttherapy.com' in the email service. This ensures admin notifications are sent to the correct administrative email address when ADMIN_EMAIL setting is not configured.
This commit is contained in:
saani 2025-11-27 17:31:16 +00:00
parent e66352e9ad
commit 9ebfa76d6a

View File

@ -17,7 +17,7 @@ class EmailService:
html_message = render_to_string('emails/admin_notification.html', context)
admin_email = getattr(settings, 'ADMIN_EMAIL', 'hello@attunehearttherapy.com')
admin_email = getattr(settings, 'ADMIN_EMAIL', 'admin@attunehearttherapy.com')
try:
email = EmailMultiAlternatives(