From 7e8686ac47574333b8cbe9544f2c84b349130b68 Mon Sep 17 00:00:00 2001 From: SharifovDeveloper Date: Tue, 2 Apr 2024 12:36:35 +0500 Subject: [PATCH 1/2] Created Constants file --- Inflow.Api/Inflow.Api.csproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Inflow.Api/Inflow.Api.csproj b/Inflow.Api/Inflow.Api.csproj index f564aaa..c770263 100644 --- a/Inflow.Api/Inflow.Api.csproj +++ b/Inflow.Api/Inflow.Api.csproj @@ -26,4 +26,8 @@ + + + + From 0c97fe134a069a0c48dc37e30fc51a420aad2b3f Mon Sep 17 00:00:00 2001 From: SharifovDeveloper Date: Tue, 2 Apr 2024 12:37:43 +0500 Subject: [PATCH 2/2] Added EmailConfigurations class --- Inflow.Api/Constants/EmailConfigurations.cs | 9 +++++++++ Inflow.Api/Inflow.Api.csproj | 4 ---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 Inflow.Api/Constants/EmailConfigurations.cs diff --git a/Inflow.Api/Constants/EmailConfigurations.cs b/Inflow.Api/Constants/EmailConfigurations.cs new file mode 100644 index 0000000..f45201b --- /dev/null +++ b/Inflow.Api/Constants/EmailConfigurations.cs @@ -0,0 +1,9 @@ +namespace Inflow.Api.Constants +{ + public class EmailConfigurations + { + public const string Subject = "Welcome to InflowMarket!"; + public const string RegisterBody = $"Dear {{recipientName}},\r\n\r\nWelcome to InflowMarket! We're thrilled to have you on board.\r\n\r\nAs a registered member of InflowMarket, you now have access to exclusive features and benefits. We're committed to providing you with the best experience possible.\r\n\r\nShould you have any questions or need assistance, please don't hesitate to reach out to our customer support team at [customer support email or phone number]. We're here to help!\r\n\r\nOnce again, thank you for joining InflowMarket. We look forward to serving you and enhancing your experience with us.\r\n\r\nBest regards,\r\n\r\nMr.Azamat\r\nSoftware Engineer\r\nInflowMarket"; + public const string LoginBody = "Dear {{recipientName}},\r\n\r\nThank you for registering with InflowMarket! We're excited to have you as a member of our community.\r\n\r\nIf you encounter any issues or need assistance logging in, please don't hesitate to contact our customer support team at [customer support email or phone number]. We're here to help!\r\n\r\nThank you for choosing InflowMarket. We appreciate your trust in us and look forward to serving you.\r\n\r\nBest regards,\r\n\r\nMr.Azamat\r\nSoftware Engineer\r\nInflowMarket"; + } +} diff --git a/Inflow.Api/Inflow.Api.csproj b/Inflow.Api/Inflow.Api.csproj index c770263..f564aaa 100644 --- a/Inflow.Api/Inflow.Api.csproj +++ b/Inflow.Api/Inflow.Api.csproj @@ -26,8 +26,4 @@ - - - -