1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 20:23:21 +00:00

[PM 19727] Update InvoiceUpcoming email content (#6168)

* changes to implement the email

* Refactoring and fix the unit testing

* refactor the code and remove used method

* Fix the failing test

* Update the email templates

* remove the extra space here

* Refactor the descriptions

* Fix the wrong subject header

* Add the in the hyperlink rather than just Help center
This commit is contained in:
cyprain-okeke
2025-09-03 20:33:32 +05:30
committed by GitHub
parent 1dade9d4b8
commit fa8d65cc1f
10 changed files with 914 additions and 1 deletions

View File

@@ -10,4 +10,9 @@ public class InvoiceUpcomingViewModel : BaseMailModel
public List<string> Items { get; set; }
public bool MentionInvoices { get; set; }
public string UpdateBillingInfoUrl { get; set; } = "https://bitwarden.com/help/update-billing-info/";
public string CollectionMethod { get; set; }
public bool HasPaymentMethod { get; set; }
public string PaymentMethodDescription { get; set; }
public string HelpUrl { get; set; } = "https://bitwarden.com/help/";
public string ContactUrl { get; set; } = "https://bitwarden.com/contact/";
}