микродобавления

This commit is contained in:
Allllen4a 2024-05-29 10:49:58 +04:00
parent 0d8bfef5bb
commit 1fb383c1a2
4 changed files with 10 additions and 4 deletions

View File

@ -5,5 +5,11 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"SmtpClientHost": "smtp.gmail.com",
"SmtpClientPort": "587",
"PopHost": "pop.gmail.com",
"PopPort": "995",
"MailLogin": "lablablablab777@gmail.com",
"MailPassword": "dhiz yimd yxzy lohm"
}

View File

@ -16,7 +16,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BeautySalonContracts\BusinessLogicContracts.csproj" />
<ProjectReference Include="..\BeautySalonContracts\BeautySalonContracts.csproj" />
<ProjectReference Include="..\BeautySalonContracts\BindingModels.csproj" />
</ItemGroup>

View File

@ -1,11 +1,11 @@
using Microsoft.Extensions.Logging;
using BeautySalonContracts.BindingModels;
using BeautySalonContracts.BusinessLogicContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BeautySalonContracts.BusinessLogicsContracts;
namespace BeautySalonBusinessLogic.MailWorker
{

View File

@ -2,7 +2,6 @@
using MailKit.Security;
using Microsoft.Extensions.Logging;
using BeautySalonContracts.BindingModels;
using BeautySalonContracts.BusinessLogicContracts;
using System;
using System.Collections.Generic;
using System.Linq;
@ -10,6 +9,7 @@ using System.Net.Mail;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using BeautySalonContracts.BusinessLogicsContracts;
namespace BeautySalonBusinessLogic.MailWorker
{