diff --git a/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.html.hbs b/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.html.hbs index fcfc51ab6..0d6dde413 100644 --- a/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.html.hbs +++ b/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.html.hbs @@ -17,7 +17,10 @@ {{/if}} - To avoid any interruption in service, please ensure that your payment method on file is up to date and can be charged for the above amount. You can manage your subscription, payment method, and invoices by logging into the web vault at {{{link WebVaultUrl}}}. + To avoid any interruption in service, please ensure that your payment method on file is up to date and can be charged for the above amount. You can manage your subscription, payment method, and invoices by logging into the web vault. + + update-billing-info + {{#if MentionInvoices}} diff --git a/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.text.hbs b/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.text.hbs index 93120cc43..9c7092018 100644 --- a/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.text.hbs +++ b/src/Core/MailTemplates/Handlebars/InvoiceUpcoming.text.hbs @@ -9,7 +9,7 @@ Summary Of Charges {{/each}} {{/if}} -To avoid any interruption in service, please ensure that your payment method on file is up to date and can be charged for the above amount. You can manage your subscription, payment method, and invoices by logging into the web vault at {{{WebVaultUrl}}}. +To avoid any interruption in service, please ensure that your payment method on file is up to date and can be charged for the above amount. You can manage your subscription, payment method, and invoices by logging into the web vault. For more information, please visit {{{UpdateBillingInfoUrl}}}. {{#if MentionInvoices}} {{/if}} diff --git a/src/Core/Models/Mail/InvoiceUpcomingViewModel.cs b/src/Core/Models/Mail/InvoiceUpcomingViewModel.cs index 29c40bf92..db62178a0 100644 --- a/src/Core/Models/Mail/InvoiceUpcomingViewModel.cs +++ b/src/Core/Models/Mail/InvoiceUpcomingViewModel.cs @@ -6,4 +6,5 @@ public class InvoiceUpcomingViewModel : BaseMailModel public DateTime DueDate { get; set; } public List Items { get; set; } public bool MentionInvoices { get; set; } + public string UpdateBillingInfoUrl { get; set; } = "https://bitwarden.com/help/update-billing-info/"; }