{{ greeting|default:"Hey there," }}

{% if email_type == "verification" or not email_type %}

To get started in BlueRitt, we need to verify that {{ email }} is you.

Once that's out of the way, we can get started on setting up your profile and enjoy advance AI journey with us.

{% elif email_type == "trial_activation" %}

Dear {{ name|default:"User" }},

Your card has been successfully added to your account, granting you a 7-day free trial to explore our application.

During this trial period, you'll have access to all the features of our {{ plan_name|default:"Premium" }} plan. After the trial ends, your subscription will automatically begin.

{% elif email_type == "payment_success" %}

Dear {{ name|default:"User" }},

We have successfully received your payment. Thank you for using our application.

Payment Details:

• Amount: ${{ amount|default:"0.00" }}

• Transaction ID: {{ transaction_id|default:"N/A" }}

• Date: {{ payment_date|default:"N/A" }}

• Plan/Product: {{ plan_name|default:"N/A" }}

You can view your invoice and payment history in your account.

{% elif email_type == "subscription_charge" %}

Dear {{ name|default:"User" }},

Your subscription has been successfully charged for the current billing period.

Subscription Details:

• Plan: {{ plan_name|default:"N/A" }}

• Amount Charged: ${{ amount|default:"0.00" }}

• Billing Date: {{ payment_date|default:"N/A" }}

• Next Billing Date: {{ next_billing_date|default:"N/A" }}

You can view your subscription details and payment history in your account.

If you have any questions about this charge, please contact our support team.

{% elif email_type == "payment_failure" %}

Dear {{ name|default:"User" }},

We attempted to process your payment, but unfortunately, it was unsuccessful.

Payment Details:

• Amount: ${{ amount|default:"0.00" }}

• Transaction ID: {{ transaction_id|default:"N/A" }}

• Date: {{ payment_date|default:"N/A" }}

• Reason: {{ failure_reason|default:"Unknown error" }}

To avoid service disruption, please update your payment details or retry the payment.

{% elif email_type == "subscription_cancel" %}

Dear {{ name|default:"User" }},

We're sorry to see you go! Your subscription has been successfully cancelled.

Cancellation Details:

• Plan: {{ plan_name|default:"N/A" }}

• Last Active Date: {{ end_date|default:"N/A" }}

{% if cancellation_reason %}

• Reason for Cancellation: {{ cancellation_reason }}

{% endif %}

You will continue to have access until your subscription ends on {{ end_date|default:"N/A" }}. If you change your mind, you can reactivate your subscription anytime.

{% elif email_type == "password_reset" %}

Dear {{ name|default:"User" }},

We received a request to reset your password. If you made this request, please click the link below to set a new password:

This link will expire in 5 minutes, so be sure to reset your password soon. If you didn't request a password reset, please ignore this email or contact our support team for assistance.

{% elif email_type == "login_otp" %}

Login Verification

Hello {% if name %}{{ name }}{% else %}there{% endif %},

Use the following code to complete your login:

{{ otp_code }}

This code will expire in {{ expiry_minutes|default:"15" }} minutes. If you did not request this login, please contact our support team immediately.

Return to Login

{% elif email_type == "invoice" %}

Invoice #{{ invoice_number }}

Hello {% if name %}{{ name }}{% else %}there{% endif %},

Thank you for your business. Here is your invoice from BlueRitt:

Invoice Number: {{ invoice_number }}
Date: {{ invoice_date }}
Status: {{ status }}
Amount: {{ amount }}
{% if items and items|length > 0 %}

Items

{% for item in items %} {% endfor %}
Description Amount
{{ item.description }} {{ item.amount }}
{% else %}

Summary

Description Amount
{{ plan_name }} ({{ payment_date }}) {{ amount }}
{% endif %}

View Invoice

Download PDF

If you have any questions about this invoice, please contact our support team.

{% else %} {{ custom_message|safe }} {% endif %}

Thank you,
Your BlueRitt Team. If you have any questions, feel free to reach out to our support team at support@blueritt.com.