From 550fc97c25979ff33f8c9e2cf714519d17666a51 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 16 Feb 2023 23:19:39 +0000 Subject: [PATCH] --- server/biz/LicenseBiz.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/biz/LicenseBiz.cs b/server/biz/LicenseBiz.cs index 681cc2e..1fa6ac1 100644 --- a/server/biz/LicenseBiz.cs +++ b/server/biz/LicenseBiz.cs @@ -164,7 +164,7 @@ namespace Sockeye.Biz if (!l.NotificationSent && !string.IsNullOrWhiteSpace(l.FetchEmail)) { //## ------------------ DEFAULT NOTIFICATIONS TO CUSTOMER ON LICENSE AVAILABLE ---------------- - + string ProductGroupEmailSubjectDesignator = string.Empty; string body = string.Empty; var licenseInfo = KeyFactory.LicenseInfo(l); switch (l.PGroup) @@ -185,6 +185,7 @@ namespace Sockeye.Biz body = ServerGlobalBizSettings.Cache.V7NewKey.Replace("{LicenseDescription}", licenseInfo); } } + ProductGroupEmailSubjectDesignator = " 7"; break; case ProductGroup.RavenPerpetual: if (l.TrialMode) @@ -238,7 +239,7 @@ MaximumDataGB: 20 var notifyDirectSMTP = new Sockeye.Api.Controllers.NotifyController.NotifyDirectSMTP() { ToAddress = l.FetchEmail, - Subject = "AyaNova license key", + Subject = $"AyaNova{ProductGroupEmailSubjectDesignator} license key", TextBody = body };