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:
parent
9ebfa76d6a
commit
20b7455eb7
@ -286,14 +286,6 @@
|
|||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<div class="email-footer">
|
<div class="email-footer">
|
||||||
<div class="company-name">{{ settings.SITE_NAME|default:"Attune Heart Therapy" }}</div>
|
<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">
|
<p class="copyright">
|
||||||
© {% now "Y" %} {{ settings.SITE_NAME|default:"Attune Heart Therapy" }}.
|
© {% now "Y" %} {{ settings.SITE_NAME|default:"Attune Heart Therapy" }}.
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|||||||
@ -295,9 +295,9 @@
|
|||||||
<p class="support-info">
|
<p class="support-info">
|
||||||
Need help? Contact our support team at
|
Need help? Contact our support team at
|
||||||
<a
|
<a
|
||||||
href="mailto:hello@attunehearttherapy.com"
|
href="mailto:admin@attunehearttherapy.com"
|
||||||
style="color: #fff; text-decoration: none"
|
style="color: #fff; text-decoration: none"
|
||||||
>hello@attunehearttherapy.com</a
|
>admin@attunehearttherapy.com</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p class="copyright">
|
<p class="copyright">
|
||||||
|
|||||||
@ -274,9 +274,9 @@
|
|||||||
<p class="support-info">
|
<p class="support-info">
|
||||||
Need help? Contact our support team at
|
Need help? Contact our support team at
|
||||||
<a
|
<a
|
||||||
href="mailto:{{ support_email }}"
|
href="mailto:admin@attunehearttherapy.com"
|
||||||
style="color: #fff; text-decoration: none"
|
style="color: #fff; text-decoration: none"
|
||||||
>hello@attunehearttherapy.com</a
|
>admin@attunehearttherapy.com</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p class="copyright">
|
<p class="copyright">
|
||||||
|
|||||||
@ -5,7 +5,6 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>{% block title %}Attune Heart Therapy{% endblock %}</title>
|
<title>{% block title %}Attune Heart Therapy{% endblock %}</title>
|
||||||
<style>
|
<style>
|
||||||
/* Reset styles for email compatibility */
|
|
||||||
body, table, td, div, p, a {
|
body, table, td, div, p, a {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|||||||
@ -165,9 +165,9 @@
|
|||||||
<p class="support-info">
|
<p class="support-info">
|
||||||
Need help? Contact our support team at
|
Need help? Contact our support team at
|
||||||
<a
|
<a
|
||||||
href="mailto:{{ support_email }}"
|
href="mailto:admin@attunehearttherapy.com"
|
||||||
style="color: #fff; text-decoration: none"
|
style="color: #fff; text-decoration: none"
|
||||||
>{{ support_email }}</a
|
>admin@attunehearttherapy.com</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p class="copyright">
|
<p class="copyright">
|
||||||
|
|||||||
@ -156,9 +156,9 @@
|
|||||||
<p class="support-info">
|
<p class="support-info">
|
||||||
Need help? Contact our support team at
|
Need help? Contact our support team at
|
||||||
<a
|
<a
|
||||||
href="mailto:{{ support_email }}"
|
href="mailto:admin@attunehearttherapy.com"
|
||||||
style="color: #fff; text-decoration: none"
|
style="color: #fff; text-decoration: none"
|
||||||
>{{ support_email }}</a
|
>admin@attunehearttherapy.com</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p class="copyright">
|
<p class="copyright">
|
||||||
|
|||||||
@ -17,7 +17,7 @@ def send_otp_via_email(email, otp, user_name=None, context='registration'):
|
|||||||
'otp': otp,
|
'otp': otp,
|
||||||
'expiry_minutes': 10,
|
'expiry_minutes': 10,
|
||||||
'company_name': 'Attune Heart Therapy',
|
'company_name': 'Attune Heart Therapy',
|
||||||
'support_email': 'hello@attunehearttherapy.com',
|
'support_email': 'admin@attunehearttherapy.com',
|
||||||
'current_year': timezone.now().year,
|
'current_year': timezone.now().year,
|
||||||
'email_context': context
|
'email_context': context
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user