From d5c2fe63487933a747022d0332b264c85a662065 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Tue, 31 Dec 2024 15:48:58 +0700 Subject: [PATCH] feat: cancellation --- apps/backend/src/api/routes/billing.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/api/routes/billing.controller.ts b/apps/backend/src/api/routes/billing.controller.ts index 5bf7f73b..fb8cfb25 100644 --- a/apps/backend/src/api/routes/billing.controller.ts +++ b/apps/backend/src/api/routes/billing.controller.ts @@ -67,7 +67,7 @@ export class BillingController { await this._notificationService.sendEmail( process.env.EMAIL_FROM_ADDRESS, 'Subscription Cancelled', - `${user.name} from Organization ${org.name} has cancelled their subscription because: ${body.feedback}`, + `Organization ${org.name} has cancelled their subscription because: ${body.feedback}`, user.email );