From fb270b538eec7a70ff78466fb5e58d3060eaf13f Mon Sep 17 00:00:00 2001 From: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com> Date: Tue, 20 Aug 2024 15:36:15 -0400 Subject: [PATCH] No longer sending upcoming invoice reminder for invoices with a $0 balance (#4593) --- src/Billing/Services/Implementations/UpcomingInvoiceHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Billing/Services/Implementations/UpcomingInvoiceHandler.cs b/src/Billing/Services/Implementations/UpcomingInvoiceHandler.cs index aaa06b9f47..bd496c6974 100644 --- a/src/Billing/Services/Implementations/UpcomingInvoiceHandler.cs +++ b/src/Billing/Services/Implementations/UpcomingInvoiceHandler.cs @@ -147,7 +147,7 @@ public class UpcomingInvoiceHandler : IUpcomingInvoiceHandler { var validEmails = emails.Where(e => !string.IsNullOrEmpty(e)); - if (invoice.NextPaymentAttempt.HasValue) + if (invoice.NextPaymentAttempt.HasValue && invoice.AmountDue > 0) { await _mailService.SendInvoiceUpcoming( validEmails,