Compare commits

..

2 Commits

Author SHA1 Message Date
488271489e Merge pull request 'fix: update default admin email fallback address' (#44) from feature/meetings into main
Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/44
2025-11-27 17:31:56 +00:00
9ebfa76d6a 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.
2025-11-27 17:31:16 +00:00

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(