Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

21560 - Payment Reminder Fixes #3025

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
# Payment Due for {{ account_number }}: {{ account_name_with_branch }}

{% if short_name_links_count > 1 %}
There's an amount owing on your account for your {{ statement_month }} statement (#{{ statement_number }}), which is due today {{ due_date }}.
There's an amount owing on your account for your {{ statement_month }} statement (#{{ statement_number }}), which is due today ({{ due_date }}).
{% else %}
There's an amount owing of {{ total_amount_owing }} on your account for your {{ statement_month }} statement (#{{ statement_number }}), which is due today {{ due_date }}.
There's an amount owing of ${{ total_amount_owing }} on your account for your {{ statement_month }} statement (#{{ statement_number }}), which is due today ({{ due_date }}).
{% endif %}

{% if short_name_links_count > 1 %}
If you've made a payment recently, please verify that you've paid the full amount indicated on your statement and settle any remaining balance by {{ due_date }}. This will help ensure the smooth processing of your account and services.
If you've made a payment recently, please verify that you've paid the full amount indicated on your statement and settle any remaining balance by {{ due_date }}. This will help ensure the smooth processing of your account and services.
{% else %}
To avoid any disruptions to your services, please make your payment as soon as possible.
To avoid any disruptions to your services, please make your payment as soon as possible.
{% endif %}

[Log in to view your {{ statement_frequency }} statements]({{ payment_statement_url }})

{% if short_name_links_count == 1 %}
If you've recently made a payment, please disregard this message.
{% endif %}

---
**Business Registry**
BC Registries and Online Services
Toll Free: 1-877-526-1526
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# Payment Reminder for {{ account_number }}: {{ account_name_with_branch }}

{% if short_name_links_count > 1 %}
There's an amount owing on your account for your {{ statement_month }} statement (#{{ statement_number }}).
There's an amount owing on your account for your {{ statement_month }} statement (#{{ statement_number }}).
{% else %}
There's an amount owing of {{ total_amount_owing }} on your account for your {{ statement_month }} statement (#{{ statement_number }}).
There's an amount owing of ${{ total_amount_owing }} on your account for your {{ statement_month }} statement (#{{ statement_number }}).
{% endif %}

{% if short_name_links_count > 1 %}
Please settle your remaining balance before {{ due_date }}. This will help ensure the smooth processing of your account and services.
If you've made a payment recently, please verify that you've paid the full amount indicated on your statement and settle any remaining balance by {{ due_date }}. This will help ensure the smooth processing of your account and services.
{% else %}
If you've made a payment recently, please verify that you've paid the full amount indicated on your statement and settle any remaining balance by {{ due_date }}. This will help ensure the smooth processing of your account and services.
Please settle your remaining balance before {{ due_date }}. This will help ensure the smooth processing of your account and services.
{% endif %}

[Log in to view your {{ statement_frequency }} statements]({{ payment_statement_url }})

{% if short_name_links_count == 1 %}
If you've recently made a payment, please disregard this message.
{% endif %}

---
**Business Registry**
BC Registries and Online Services
Toll Free: 1-877-526-1526
Expand Down
Loading