refactor(emails): update support email to admin address

- Change support email from hello@attunehearttherapy.com to admin@attunehearttherapy.com across all email templates
- Remove support contact section from admin notification template
- Standardize email addresses by hardcoding admin email in templates
- Remove unused CSS comment from base email template

This ensures consistent support contact information across the application and directs user inquiries to the appropriate admin channel.
This commit is contained in:
saani 2025-11-27 18:30:23 +00:00
parent 9ebfa76d6a
commit 20b7455eb7
8 changed files with 9 additions and 18 deletions

View File

@ -286,14 +286,6 @@
<!-- Footer -->
<div class="email-footer">
<div class="company-name">{{ settings.SITE_NAME|default:"Attune Heart Therapy" }}</div>
<p class="support-info">
Need help? Contact our support team at
<a
href="mailto:hello@attunehearttherapy.com"
style="color: #fff; text-decoration: none"
>hello@attunehearttherapy.com</a
>
</p>
<p class="copyright">
© {% now "Y" %} {{ settings.SITE_NAME|default:"Attune Heart Therapy" }}.
All rights reserved.

View File

@ -295,9 +295,9 @@
<p class="support-info">
Need help? Contact our support team at
<a
href="mailto:hello@attunehearttherapy.com"
href="mailto:admin@attunehearttherapy.com"
style="color: #fff; text-decoration: none"
>hello@attunehearttherapy.com</a
>admin@attunehearttherapy.com</a
>
</p>
<p class="copyright">

View File

@ -274,9 +274,9 @@
<p class="support-info">
Need help? Contact our support team at
<a
href="mailto:{{ support_email }}"
href="mailto:admin@attunehearttherapy.com"
style="color: #fff; text-decoration: none"
>hello@attunehearttherapy.com</a
>admin@attunehearttherapy.com</a
>
</p>
<p class="copyright">

View File

@ -5,7 +5,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Attune Heart Therapy{% endblock %}</title>
<style>
/* Reset styles for email compatibility */
body, table, td, div, p, a {
margin: 0;
padding: 0;

View File

@ -165,9 +165,9 @@
<p class="support-info">
Need help? Contact our support team at
<a
href="mailto:{{ support_email }}"
href="mailto:admin@attunehearttherapy.com"
style="color: #fff; text-decoration: none"
>{{ support_email }}</a
>admin@attunehearttherapy.com</a
>
</p>
<p class="copyright">

View File

@ -156,9 +156,9 @@
<p class="support-info">
Need help? Contact our support team at
<a
href="mailto:{{ support_email }}"
href="mailto:admin@attunehearttherapy.com"
style="color: #fff; text-decoration: none"
>{{ support_email }}</a
>admin@attunehearttherapy.com</a
>
</p>
<p class="copyright">

View File

@ -17,7 +17,7 @@ def send_otp_via_email(email, otp, user_name=None, context='registration'):
'otp': otp,
'expiry_minutes': 10,
'company_name': 'Attune Heart Therapy',
'support_email': 'hello@attunehearttherapy.com',
'support_email': 'admin@attunehearttherapy.com',
'current_year': timezone.now().year,
'email_context': context
}