feature/meetings #45

Merged
Saani merged 2 commits from feature/meetings into main 2025-11-27 18:45:33 +00:00
8 changed files with 9 additions and 18 deletions
Showing only changes of commit 20b7455eb7 - Show all commits

View File

@ -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.

View File

@ -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">

View File

@ -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">

View File

@ -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;

View File

@ -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">

View File

@ -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">

View File

@ -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
} }