├── .vs ├── EmailServiceTest │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── config │ │ └── applicationhost.config │ └── v17 │ │ ├── .futdcache.v1 │ │ └── .suo └── ProjectEvaluation │ ├── emailservicetest.metadata.v2 │ └── emailservicetest.projects.v2 ├── EmailAPI ├── Controllers │ ├── EmailController.cs │ └── WeatherForecastController.cs ├── EmailAPI.csproj ├── EmailAPI.csproj.user ├── Module │ └── MailRequest.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── IMailService.cs │ └── MailService.cs ├── Settings │ └── MailSettings.cs ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── BouncyCastle.Crypto.dll │ │ ├── EmailAPI.deps.json │ │ ├── EmailAPI.dll │ │ ├── EmailAPI.exe │ │ ├── EmailAPI.pdb │ │ ├── EmailAPI.runtimeconfig.json │ │ ├── MailKit.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── MimeKit.dll │ │ ├── NETCore.MailKit.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── EmailAPI.AssemblyInfo.cs │ │ ├── EmailAPI.AssemblyInfoInputs.cache │ │ ├── EmailAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── EmailAPI.GlobalUsings.g.cs │ │ ├── EmailAPI.MvcApplicationPartsAssemblyInfo.cache │ │ ├── EmailAPI.MvcApplicationPartsAssemblyInfo.cs │ │ ├── EmailAPI.assets.cache │ │ ├── EmailAPI.csproj.AssemblyReference.cache │ │ ├── EmailAPI.csproj.BuildWithSkipAnalyzers │ │ ├── EmailAPI.csproj.CopyComplete │ │ ├── EmailAPI.csproj.CoreCompileInputs.cache │ │ ├── EmailAPI.csproj.FileListAbsolute.txt │ │ ├── EmailAPI.dll │ │ ├── EmailAPI.genruntimeconfig.cache │ │ ├── EmailAPI.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── EmailAPI.dll │ │ ├── refint │ │ └── EmailAPI.dll │ │ └── staticwebassets.build.json │ ├── EmailAPI.csproj.nuget.dgspec.json │ ├── EmailAPI.csproj.nuget.g.props │ ├── EmailAPI.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ └── staticwebassets.pack.sentinel └── EmailServiceTest.sln /.vs/EmailServiceTest/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/.vs/EmailServiceTest/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/EmailServiceTest/config/applicationhost.config: -------------------------------------------------------------------------------- 1 |  2 | 20 | 21 | 48 | 49 | 50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | 59 | 60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | 79 |
80 |
81 | 82 |
83 |
84 |
85 |
86 |
87 |
88 | 89 |
90 |
91 |
92 |
93 |
94 | 95 |
96 |
97 |
98 | 99 |
100 |
101 | 102 |
103 |
104 | 105 |
106 |
107 |
108 | 109 | 110 |
111 |
112 |
113 |
114 |
115 |
116 | 117 |
118 |
119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | -------------------------------------------------------------------------------- /.vs/EmailServiceTest/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/.vs/EmailServiceTest/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/EmailServiceTest/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/.vs/EmailServiceTest/v17/.suo -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/emailservicetest.metadata.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/.vs/ProjectEvaluation/emailservicetest.metadata.v2 -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/emailservicetest.projects.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/.vs/ProjectEvaluation/emailservicetest.projects.v2 -------------------------------------------------------------------------------- /EmailAPI/Controllers/EmailController.cs: -------------------------------------------------------------------------------- 1 | using EmailAPI.Module; 2 | using EmailAPI.Services; 3 | using Microsoft.AspNetCore.Mvc; 4 | 5 | namespace EmailAPI.Controllers 6 | { 7 | [ApiController] 8 | [Route("api/[controller]")] 9 | public class EmailController : Controller 10 | { 11 | 12 | private readonly IMailService mailService; 13 | public EmailController(IMailService mailService) 14 | { 15 | this.mailService = mailService; 16 | } 17 | 18 | [HttpPost("Send")] 19 | public async Task Send([FromForm] MailRequest request) 20 | { 21 | try 22 | { 23 | await mailService.SendEmailAsync(request); 24 | return Ok(); 25 | } 26 | catch (Exception ex) 27 | { 28 | 29 | throw ex; 30 | } 31 | 32 | } 33 | 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /EmailAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace EmailAPI.Controllers 4 | { 5 | [ApiController] 6 | [Route("[controller]")] 7 | public class WeatherForecastController : ControllerBase 8 | { 9 | private static readonly string[] Summaries = new[] 10 | { 11 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 12 | }; 13 | 14 | private readonly ILogger _logger; 15 | 16 | public WeatherForecastController(ILogger logger) 17 | { 18 | _logger = logger; 19 | } 20 | 21 | [HttpGet(Name = "GetWeatherForecast")] 22 | public IEnumerable Get() 23 | { 24 | return Enumerable.Range(1, 5).Select(index => new WeatherForecast 25 | { 26 | Date = DateTime.Now.AddDays(index), 27 | TemperatureC = Random.Shared.Next(-20, 55), 28 | Summary = Summaries[Random.Shared.Next(Summaries.Length)] 29 | }) 30 | .ToArray(); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /EmailAPI/EmailAPI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /EmailAPI/EmailAPI.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectDebugger 5 | 6 | 7 | IIS Express 8 | 9 | -------------------------------------------------------------------------------- /EmailAPI/Module/MailRequest.cs: -------------------------------------------------------------------------------- 1 | namespace EmailAPI.Module 2 | { 3 | public class MailRequest 4 | { 5 | public string ToEmail { get; set; } 6 | public string Subject { get; set; } 7 | public string Body { get; set; } 8 | public List Attachments { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /EmailAPI/Program.cs: -------------------------------------------------------------------------------- 1 | var builder = WebApplication.CreateBuilder(args); 2 | 3 | // Add services to the container. 4 | 5 | builder.Services.AddControllers(); 6 | // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle 7 | builder.Services.AddEndpointsApiExplorer(); 8 | builder.Services.AddSwaggerGen(); 9 | 10 | var app = builder.Build(); 11 | 12 | // Configure the HTTP request pipeline. 13 | if (app.Environment.IsDevelopment()) 14 | { 15 | app.UseSwagger(); 16 | app.UseSwaggerUI(); 17 | } 18 | 19 | app.UseHttpsRedirection(); 20 | 21 | app.UseAuthorization(); 22 | 23 | app.MapControllers(); 24 | 25 | app.Run(); 26 | -------------------------------------------------------------------------------- /EmailAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:64245", 8 | "sslPort": 44397 9 | } 10 | }, 11 | "profiles": { 12 | "EmailAPI": { 13 | "commandName": "Project", 14 | "dotnetRunMessages": true, 15 | "launchBrowser": true, 16 | "launchUrl": "swagger", 17 | "applicationUrl": "https://localhost:7294;http://localhost:5294", 18 | "environmentVariables": { 19 | "ASPNETCORE_ENVIRONMENT": "Development" 20 | } 21 | }, 22 | "IIS Express": { 23 | "commandName": "IISExpress", 24 | "launchBrowser": true, 25 | "launchUrl": "swagger", 26 | "environmentVariables": { 27 | "ASPNETCORE_ENVIRONMENT": "Development" 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /EmailAPI/Services/IMailService.cs: -------------------------------------------------------------------------------- 1 | using EmailAPI.Module; 2 | 3 | namespace EmailAPI.Services 4 | { 5 | public interface IMailService 6 | { 7 | Task SendEmailAsync(MailRequest mailRequest); 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /EmailAPI/Services/MailService.cs: -------------------------------------------------------------------------------- 1 | using EmailAPI.Module; 2 | using EmailAPI.Settings; 3 | using MailKit.Net.Smtp; 4 | using MailKit.Security; 5 | using Microsoft.Extensions.Options; 6 | using MimeKit; 7 | 8 | namespace EmailAPI.Services 9 | { 10 | public class MailService : IMailService 11 | { 12 | private readonly MailSettings _mailSettings; 13 | public MailService(IOptions mailSettings) 14 | { 15 | _mailSettings = mailSettings.Value; 16 | } 17 | public async Task SendEmailAsync(MailRequest mailRequest) 18 | { 19 | var email = new MimeMessage(); 20 | email.Sender = MailboxAddress.Parse(_mailSettings.Mail); 21 | email.To.Add(MailboxAddress.Parse(mailRequest.ToEmail)); 22 | email.Subject = mailRequest.Subject; 23 | var builder = new BodyBuilder(); 24 | if (mailRequest.Attachments != null) 25 | { 26 | byte[] fileBytes; 27 | foreach (var file in mailRequest.Attachments) 28 | { 29 | if (file.Length > 0) 30 | { 31 | using (var ms = new MemoryStream()) 32 | { 33 | file.CopyTo(ms); 34 | fileBytes = ms.ToArray(); 35 | } 36 | builder.Attachments.Add(file.FileName, fileBytes, ContentType.Parse(file.ContentType)); 37 | } 38 | } 39 | } 40 | builder.HtmlBody = mailRequest.Body; 41 | email.Body = builder.ToMessageBody(); 42 | using var smtp = new SmtpClient(); 43 | smtp.Connect(_mailSettings.Host, _mailSettings.Port, SecureSocketOptions.StartTls); 44 | smtp.Authenticate(_mailSettings.Mail, _mailSettings.Password); 45 | await smtp.SendAsync(email); 46 | smtp.Disconnect(true); 47 | } 48 | 49 | 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /EmailAPI/Settings/MailSettings.cs: -------------------------------------------------------------------------------- 1 | namespace EmailAPI.Settings 2 | { 3 | public class MailSettings 4 | { 5 | public string Mail { get; set; } 6 | public string DisplayName { get; set; } 7 | public string Password { get; set; } 8 | public string Host { get; set; } 9 | public int Port { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /EmailAPI/Startup.cs: -------------------------------------------------------------------------------- 1 | using EmailAPI.Services; 2 | using EmailAPI.Settings; 3 | using Microsoft.OpenApi.Models; 4 | 5 | namespace EmailAPI 6 | { 7 | public class Startup 8 | { 9 | public Startup(IConfiguration configuration) 10 | { 11 | Configuration = configuration; 12 | } 13 | 14 | public IConfiguration Configuration { get; } 15 | 16 | // This method gets called by the runtime. Use this method to add services to the container. 17 | public void ConfigureServices(IServiceCollection services) 18 | { 19 | services.Configure(Configuration.GetSection("MailSettings")); 20 | services.AddTransient(); 21 | 22 | services.AddControllers(); 23 | services.AddSwaggerGen(c => 24 | { 25 | c.SwaggerDoc("v1", new OpenApiInfo { Title = "_101SendEmailNotificationDoNetCoreWebAPI", Version = "v1" }); 26 | }); 27 | services.AddCors(c => 28 | { 29 | c.AddPolicy("AllowOrigin", options => options.AllowAnyOrigin()); 30 | }); 31 | } 32 | 33 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 34 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 35 | { 36 | if (env.IsDevelopment()) 37 | { 38 | app.UseDeveloperExceptionPage(); 39 | app.UseSwagger(); 40 | app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "_101SendEmailNotificationDoNetCoreWebAPI v1")); 41 | } 42 | 43 | app.UseHttpsRedirection(); 44 | 45 | app.UseRouting(); 46 | 47 | app.UseAuthorization(); 48 | 49 | app.UseEndpoints(endpoints => 50 | { 51 | endpoints.MapControllers(); 52 | }); 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /EmailAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | namespace EmailAPI 2 | { 3 | public class WeatherForecast 4 | { 5 | public DateTime Date { get; set; } 6 | 7 | public int TemperatureC { get; set; } 8 | 9 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 10 | 11 | public string? Summary { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /EmailAPI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "MailSettings": { 3 | "Mail": "yourmail@?.com", 4 | "DisplayName": "Your Name", 5 | "Password": "mysupersecretkey", 6 | "Host": "smtp.gmail.com", 7 | "Port": 587 8 | }, 9 | "Logging": { 10 | "LogLevel": { 11 | "Default": "Information", 12 | "Microsoft.AspNetCore": "Warning" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /EmailAPI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "MailSettings": { 9 | "Mail": "yourmail@?.com", 10 | "DisplayName": "Your Name", 11 | "Password": "mysupersecretkey", 12 | "Host": "smtp.gmail.com", 13 | "Port": 587 14 | }, 15 | "AllowedHosts": "*" 16 | } 17 | -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/EmailAPI.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v6.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v6.0": { 9 | "EmailAPI/1.0.0": { 10 | "dependencies": { 11 | "MimeKit": "3.4.1", 12 | "NETCore.MailKit": "2.1.0", 13 | "Swashbuckle.AspNetCore": "6.2.3" 14 | }, 15 | "runtime": { 16 | "EmailAPI.dll": {} 17 | } 18 | }, 19 | "MailKit/3.2.0": { 20 | "dependencies": { 21 | "MimeKit": "3.4.1" 22 | }, 23 | "runtime": { 24 | "lib/net6.0/MailKit.dll": { 25 | "assemblyVersion": "3.2.0.0", 26 | "fileVersion": "3.2.0.0" 27 | } 28 | } 29 | }, 30 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, 31 | "Microsoft.Extensions.DependencyInjection/6.0.0": { 32 | "dependencies": { 33 | "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", 34 | "System.Runtime.CompilerServices.Unsafe": "6.0.0" 35 | } 36 | }, 37 | "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, 38 | "Microsoft.OpenApi/1.2.3": { 39 | "runtime": { 40 | "lib/netstandard2.0/Microsoft.OpenApi.dll": { 41 | "assemblyVersion": "1.2.3.0", 42 | "fileVersion": "1.2.3.0" 43 | } 44 | } 45 | }, 46 | "MimeKit/3.4.1": { 47 | "dependencies": { 48 | "Portable.BouncyCastle": "1.9.0", 49 | "System.Security.Cryptography.Pkcs": "6.0.0" 50 | }, 51 | "runtime": { 52 | "lib/net6.0/MimeKit.dll": { 53 | "assemblyVersion": "3.4.0.0", 54 | "fileVersion": "3.4.1.0" 55 | } 56 | } 57 | }, 58 | "NETCore.MailKit/2.1.0": { 59 | "dependencies": { 60 | "MailKit": "3.2.0", 61 | "Microsoft.Extensions.DependencyInjection": "6.0.0" 62 | }, 63 | "runtime": { 64 | "lib/netstandard2.1/NETCore.MailKit.dll": { 65 | "assemblyVersion": "2.1.0.0", 66 | "fileVersion": "2.1.0.0" 67 | } 68 | } 69 | }, 70 | "Portable.BouncyCastle/1.9.0": { 71 | "runtime": { 72 | "lib/netstandard2.0/BouncyCastle.Crypto.dll": { 73 | "assemblyVersion": "1.9.0.0", 74 | "fileVersion": "1.9.0.1" 75 | } 76 | } 77 | }, 78 | "Swashbuckle.AspNetCore/6.2.3": { 79 | "dependencies": { 80 | "Microsoft.Extensions.ApiDescription.Server": "3.0.0", 81 | "Swashbuckle.AspNetCore.Swagger": "6.2.3", 82 | "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", 83 | "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" 84 | } 85 | }, 86 | "Swashbuckle.AspNetCore.Swagger/6.2.3": { 87 | "dependencies": { 88 | "Microsoft.OpenApi": "1.2.3" 89 | }, 90 | "runtime": { 91 | "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { 92 | "assemblyVersion": "6.2.3.0", 93 | "fileVersion": "6.2.3.0" 94 | } 95 | } 96 | }, 97 | "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { 98 | "dependencies": { 99 | "Swashbuckle.AspNetCore.Swagger": "6.2.3" 100 | }, 101 | "runtime": { 102 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { 103 | "assemblyVersion": "6.2.3.0", 104 | "fileVersion": "6.2.3.0" 105 | } 106 | } 107 | }, 108 | "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { 109 | "runtime": { 110 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { 111 | "assemblyVersion": "6.2.3.0", 112 | "fileVersion": "6.2.3.0" 113 | } 114 | } 115 | }, 116 | "System.Formats.Asn1/6.0.0": {}, 117 | "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, 118 | "System.Security.Cryptography.Pkcs/6.0.0": { 119 | "dependencies": { 120 | "System.Formats.Asn1": "6.0.0" 121 | } 122 | } 123 | } 124 | }, 125 | "libraries": { 126 | "EmailAPI/1.0.0": { 127 | "type": "project", 128 | "serviceable": false, 129 | "sha512": "" 130 | }, 131 | "MailKit/3.2.0": { 132 | "type": "package", 133 | "serviceable": true, 134 | "sha512": "sha512-5MTpTqmjqT7HPvYbP3HozRZMth5vSaT0ReN0iM3rAM4CgLI/R1qqtLDDNWGnFFIlcNzeJkZQRJJMkv8cgzWBbA==", 135 | "path": "mailkit/3.2.0", 136 | "hashPath": "mailkit.3.2.0.nupkg.sha512" 137 | }, 138 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 139 | "type": "package", 140 | "serviceable": true, 141 | "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", 142 | "path": "microsoft.extensions.apidescription.server/3.0.0", 143 | "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" 144 | }, 145 | "Microsoft.Extensions.DependencyInjection/6.0.0": { 146 | "type": "package", 147 | "serviceable": true, 148 | "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", 149 | "path": "microsoft.extensions.dependencyinjection/6.0.0", 150 | "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" 151 | }, 152 | "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { 153 | "type": "package", 154 | "serviceable": true, 155 | "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", 156 | "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", 157 | "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" 158 | }, 159 | "Microsoft.OpenApi/1.2.3": { 160 | "type": "package", 161 | "serviceable": true, 162 | "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", 163 | "path": "microsoft.openapi/1.2.3", 164 | "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" 165 | }, 166 | "MimeKit/3.4.1": { 167 | "type": "package", 168 | "serviceable": true, 169 | "sha512": "sha512-0UmjauTJDukShQlwmClY0i5iRz1zwVxAMvM2VoJ5rM0FUSNQC34OZJCKMTAGEJAWYAsTh5hXZIufnUbbm/3jkQ==", 170 | "path": "mimekit/3.4.1", 171 | "hashPath": "mimekit.3.4.1.nupkg.sha512" 172 | }, 173 | "NETCore.MailKit/2.1.0": { 174 | "type": "package", 175 | "serviceable": true, 176 | "sha512": "sha512-+1C0sg4YJQczp/2RVrVbKLIntg7Mou7Ie5M01UBiAsxmIarjfBRlCgKK4sEbPyGask52VRKV29/Zi+41B6LPXA==", 177 | "path": "netcore.mailkit/2.1.0", 178 | "hashPath": "netcore.mailkit.2.1.0.nupkg.sha512" 179 | }, 180 | "Portable.BouncyCastle/1.9.0": { 181 | "type": "package", 182 | "serviceable": true, 183 | "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", 184 | "path": "portable.bouncycastle/1.9.0", 185 | "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" 186 | }, 187 | "Swashbuckle.AspNetCore/6.2.3": { 188 | "type": "package", 189 | "serviceable": true, 190 | "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", 191 | "path": "swashbuckle.aspnetcore/6.2.3", 192 | "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" 193 | }, 194 | "Swashbuckle.AspNetCore.Swagger/6.2.3": { 195 | "type": "package", 196 | "serviceable": true, 197 | "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", 198 | "path": "swashbuckle.aspnetcore.swagger/6.2.3", 199 | "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" 200 | }, 201 | "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { 202 | "type": "package", 203 | "serviceable": true, 204 | "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", 205 | "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", 206 | "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" 207 | }, 208 | "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { 209 | "type": "package", 210 | "serviceable": true, 211 | "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", 212 | "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", 213 | "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" 214 | }, 215 | "System.Formats.Asn1/6.0.0": { 216 | "type": "package", 217 | "serviceable": true, 218 | "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", 219 | "path": "system.formats.asn1/6.0.0", 220 | "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" 221 | }, 222 | "System.Runtime.CompilerServices.Unsafe/6.0.0": { 223 | "type": "package", 224 | "serviceable": true, 225 | "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", 226 | "path": "system.runtime.compilerservices.unsafe/6.0.0", 227 | "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" 228 | }, 229 | "System.Security.Cryptography.Pkcs/6.0.0": { 230 | "type": "package", 231 | "serviceable": true, 232 | "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", 233 | "path": "system.security.cryptography.pkcs/6.0.0", 234 | "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" 235 | } 236 | } 237 | } -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/EmailAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/EmailAPI.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/EmailAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/EmailAPI.exe -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/EmailAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/EmailAPI.pdb -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/EmailAPI.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "6.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/MailKit.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/MimeKit.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/NETCore.MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/NETCore.MailKit.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "MailSettings": { 3 | "Mail": "sabitunsur@gmail.com", 4 | "DisplayName": "Sabit Ünsür", 5 | "Password": "sqwgoihkvixoaqfs", 6 | "Host": "smtp.gmail.com", 7 | "Port": 587 8 | }, 9 | "Logging": { 10 | "LogLevel": { 11 | "Default": "Information", 12 | "Microsoft.AspNetCore": "Warning" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /EmailAPI/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "MailSettings": { 9 | "Mail": "sabitunsur@gmail.com", 10 | "DisplayName": "Sabit Ünsür", 11 | "Password": "sqwgoihkvixoaqfs", 12 | "Host": "smtp.gmail.com", 13 | "Port": 587 14 | }, 15 | "AllowedHosts": "*" 16 | } 17 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("EmailAPI")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("EmailAPI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("EmailAPI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 638bc3344ddbdc3fc73f6bc7bd51f4c5f1e6748b 2 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = EmailAPI 10 | build_property.RootNamespace = EmailAPI 11 | build_property.ProjectDir = C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\ 12 | build_property.RazorLangVersion = 6.0 13 | build_property.SupportLocalizedComponentNames = 14 | build_property.GenerateRazorMetadataSourceChecksumAttributes = 15 | build_property.MSBuildProjectDirectory = C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI 16 | build_property._RazorSourceGeneratorDebug = 17 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 15 | 16 | // Generated by the MSBuild WriteCodeFragment class. 17 | 18 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.assets.cache -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.CopyComplete -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5976bf98fdde094900cccc14f55a9d451d29a6d8 2 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\appsettings.Development.json 2 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\appsettings.json 3 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\EmailAPI.exe 4 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\EmailAPI.deps.json 5 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\EmailAPI.runtimeconfig.json 6 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\EmailAPI.dll 7 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\EmailAPI.pdb 8 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\MailKit.dll 9 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\Microsoft.OpenApi.dll 10 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\MimeKit.dll 11 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\NETCore.MailKit.dll 12 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\BouncyCastle.Crypto.dll 13 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll 14 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll 15 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll 16 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.csproj.AssemblyReference.cache 17 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.GeneratedMSBuildEditorConfig.editorconfig 18 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.AssemblyInfoInputs.cache 19 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.AssemblyInfo.cs 20 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.csproj.CoreCompileInputs.cache 21 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.MvcApplicationPartsAssemblyInfo.cs 22 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.MvcApplicationPartsAssemblyInfo.cache 23 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\staticwebassets.build.json 24 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\staticwebassets.development.json 25 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\scopedcss\bundle\EmailAPI.styles.css 26 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.csproj.CopyComplete 27 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.dll 28 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\refint\EmailAPI.dll 29 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.pdb 30 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\EmailAPI.genruntimeconfig.cache 31 | C:\Users\sabit\source\repos\EmailServiceTest\EmailAPI\obj\Debug\net6.0\ref\EmailAPI.dll 32 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.dll -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | b0c519547fa5f160ddf47c72fffe0b790fad4c72 2 | -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/EmailAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/EmailAPI.pdb -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/ref/EmailAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/ref/EmailAPI.dll -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/refint/EmailAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabitunsur/Email-API/d09aae9d3bdb17bed057c4ff2c3e7ce05d72904c/EmailAPI/obj/Debug/net6.0/refint/EmailAPI.dll -------------------------------------------------------------------------------- /EmailAPI/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "Hash": "Hmfq5x00hBelhcwObv/scR0Rpf4xR9oNpAOtrDK6cw8=", 4 | "Source": "EmailAPI", 5 | "BasePath": "_content/EmailAPI", 6 | "Mode": "Default", 7 | "ManifestType": "Build", 8 | "ReferencedProjectsConfiguration": [], 9 | "DiscoveryPatterns": [], 10 | "Assets": [] 11 | } -------------------------------------------------------------------------------- /EmailAPI/obj/EmailAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj", 11 | "projectName": "EmailAPI", 12 | "projectPath": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj", 13 | "packagesPath": "C:\\Users\\sabit\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\sabit\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net6.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net6.0": { 29 | "targetAlias": "net6.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net6.0": { 41 | "targetAlias": "net6.0", 42 | "dependencies": { 43 | "MimeKit": { 44 | "target": "Package", 45 | "version": "[3.4.1, )" 46 | }, 47 | "NETCore.MailKit": { 48 | "target": "Package", 49 | "version": "[2.1.0, )" 50 | }, 51 | "Swashbuckle.AspNetCore": { 52 | "target": "Package", 53 | "version": "[6.2.3, )" 54 | } 55 | }, 56 | "imports": [ 57 | "net461", 58 | "net462", 59 | "net47", 60 | "net471", 61 | "net472", 62 | "net48" 63 | ], 64 | "assetTargetFallback": true, 65 | "warn": true, 66 | "frameworkReferences": { 67 | "Microsoft.AspNetCore.App": { 68 | "privateAssets": "none" 69 | }, 70 | "Microsoft.NETCore.App": { 71 | "privateAssets": "all" 72 | } 73 | }, 74 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json" 75 | } 76 | } 77 | } 78 | } 79 | } -------------------------------------------------------------------------------- /EmailAPI/obj/EmailAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\sabit\.nuget\packages\ 9 | PackageReference 10 | 6.2.1 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | C:\Users\sabit\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 21 | 22 | -------------------------------------------------------------------------------- /EmailAPI/obj/EmailAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /EmailAPI/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net6.0": { 5 | "MailKit/3.2.0": { 6 | "type": "package", 7 | "dependencies": { 8 | "MimeKit": "3.2.0" 9 | }, 10 | "compile": { 11 | "lib/net6.0/MailKit.dll": {} 12 | }, 13 | "runtime": { 14 | "lib/net6.0/MailKit.dll": {} 15 | } 16 | }, 17 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 18 | "type": "package", 19 | "build": { 20 | "build/Microsoft.Extensions.ApiDescription.Server.props": {}, 21 | "build/Microsoft.Extensions.ApiDescription.Server.targets": {} 22 | }, 23 | "buildMultiTargeting": { 24 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, 25 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} 26 | } 27 | }, 28 | "Microsoft.Extensions.DependencyInjection/6.0.0": { 29 | "type": "package", 30 | "dependencies": { 31 | "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", 32 | "System.Runtime.CompilerServices.Unsafe": "6.0.0" 33 | }, 34 | "compile": { 35 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} 36 | }, 37 | "runtime": { 38 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} 39 | }, 40 | "build": { 41 | "buildTransitive/netcoreapp3.1/_._": {} 42 | } 43 | }, 44 | "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { 45 | "type": "package", 46 | "compile": { 47 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} 48 | }, 49 | "runtime": { 50 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} 51 | }, 52 | "build": { 53 | "buildTransitive/netcoreapp3.1/_._": {} 54 | } 55 | }, 56 | "Microsoft.OpenApi/1.2.3": { 57 | "type": "package", 58 | "compile": { 59 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 60 | }, 61 | "runtime": { 62 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 63 | } 64 | }, 65 | "MimeKit/3.4.1": { 66 | "type": "package", 67 | "dependencies": { 68 | "Portable.BouncyCastle": "1.9.0", 69 | "System.Security.Cryptography.Pkcs": "6.0.0" 70 | }, 71 | "compile": { 72 | "lib/net6.0/MimeKit.dll": {} 73 | }, 74 | "runtime": { 75 | "lib/net6.0/MimeKit.dll": {} 76 | } 77 | }, 78 | "NETCore.MailKit/2.1.0": { 79 | "type": "package", 80 | "dependencies": { 81 | "MailKit": "3.2.0", 82 | "Microsoft.Extensions.DependencyInjection": "6.0.0" 83 | }, 84 | "compile": { 85 | "lib/netstandard2.1/NETCore.MailKit.dll": {} 86 | }, 87 | "runtime": { 88 | "lib/netstandard2.1/NETCore.MailKit.dll": {} 89 | } 90 | }, 91 | "Portable.BouncyCastle/1.9.0": { 92 | "type": "package", 93 | "compile": { 94 | "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} 95 | }, 96 | "runtime": { 97 | "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} 98 | } 99 | }, 100 | "Swashbuckle.AspNetCore/6.2.3": { 101 | "type": "package", 102 | "dependencies": { 103 | "Microsoft.Extensions.ApiDescription.Server": "3.0.0", 104 | "Swashbuckle.AspNetCore.Swagger": "6.2.3", 105 | "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", 106 | "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" 107 | }, 108 | "build": { 109 | "build/Swashbuckle.AspNetCore.props": {} 110 | } 111 | }, 112 | "Swashbuckle.AspNetCore.Swagger/6.2.3": { 113 | "type": "package", 114 | "dependencies": { 115 | "Microsoft.OpenApi": "1.2.3" 116 | }, 117 | "compile": { 118 | "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} 119 | }, 120 | "runtime": { 121 | "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} 122 | }, 123 | "frameworkReferences": [ 124 | "Microsoft.AspNetCore.App" 125 | ] 126 | }, 127 | "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { 128 | "type": "package", 129 | "dependencies": { 130 | "Swashbuckle.AspNetCore.Swagger": "6.2.3" 131 | }, 132 | "compile": { 133 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 134 | }, 135 | "runtime": { 136 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 137 | } 138 | }, 139 | "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { 140 | "type": "package", 141 | "compile": { 142 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 143 | }, 144 | "runtime": { 145 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 146 | }, 147 | "frameworkReferences": [ 148 | "Microsoft.AspNetCore.App" 149 | ] 150 | }, 151 | "System.Formats.Asn1/6.0.0": { 152 | "type": "package", 153 | "compile": { 154 | "lib/net6.0/System.Formats.Asn1.dll": {} 155 | }, 156 | "runtime": { 157 | "lib/net6.0/System.Formats.Asn1.dll": {} 158 | }, 159 | "build": { 160 | "buildTransitive/netcoreapp3.1/_._": {} 161 | } 162 | }, 163 | "System.Runtime.CompilerServices.Unsafe/6.0.0": { 164 | "type": "package", 165 | "compile": { 166 | "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} 167 | }, 168 | "runtime": { 169 | "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} 170 | }, 171 | "build": { 172 | "buildTransitive/netcoreapp3.1/_._": {} 173 | } 174 | }, 175 | "System.Security.Cryptography.Pkcs/6.0.0": { 176 | "type": "package", 177 | "dependencies": { 178 | "System.Formats.Asn1": "6.0.0" 179 | }, 180 | "compile": { 181 | "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} 182 | }, 183 | "runtime": { 184 | "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} 185 | }, 186 | "build": { 187 | "buildTransitive/netcoreapp3.1/_._": {} 188 | }, 189 | "runtimeTargets": { 190 | "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { 191 | "assetType": "runtime", 192 | "rid": "win" 193 | } 194 | } 195 | } 196 | } 197 | }, 198 | "libraries": { 199 | "MailKit/3.2.0": { 200 | "sha512": "5MTpTqmjqT7HPvYbP3HozRZMth5vSaT0ReN0iM3rAM4CgLI/R1qqtLDDNWGnFFIlcNzeJkZQRJJMkv8cgzWBbA==", 201 | "type": "package", 202 | "path": "mailkit/3.2.0", 203 | "files": [ 204 | ".nupkg.metadata", 205 | ".signature.p7s", 206 | "icons/mailkit-50.png", 207 | "lib/net452/MailKit.dll", 208 | "lib/net452/MailKit.pdb", 209 | "lib/net452/MailKit.xml", 210 | "lib/net461/MailKit.dll", 211 | "lib/net461/MailKit.pdb", 212 | "lib/net461/MailKit.xml", 213 | "lib/net47/MailKit.dll", 214 | "lib/net47/MailKit.pdb", 215 | "lib/net47/MailKit.xml", 216 | "lib/net48/MailKit.dll", 217 | "lib/net48/MailKit.pdb", 218 | "lib/net48/MailKit.xml", 219 | "lib/net5.0/MailKit.dll", 220 | "lib/net5.0/MailKit.pdb", 221 | "lib/net5.0/MailKit.xml", 222 | "lib/net6.0/MailKit.dll", 223 | "lib/net6.0/MailKit.pdb", 224 | "lib/net6.0/MailKit.xml", 225 | "lib/netstandard2.0/MailKit.dll", 226 | "lib/netstandard2.0/MailKit.pdb", 227 | "lib/netstandard2.0/MailKit.xml", 228 | "lib/netstandard2.1/MailKit.dll", 229 | "lib/netstandard2.1/MailKit.pdb", 230 | "lib/netstandard2.1/MailKit.xml", 231 | "mailkit.3.2.0.nupkg.sha512", 232 | "mailkit.nuspec" 233 | ] 234 | }, 235 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 236 | "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", 237 | "type": "package", 238 | "path": "microsoft.extensions.apidescription.server/3.0.0", 239 | "hasTools": true, 240 | "files": [ 241 | ".nupkg.metadata", 242 | ".signature.p7s", 243 | "build/Microsoft.Extensions.ApiDescription.Server.props", 244 | "build/Microsoft.Extensions.ApiDescription.Server.targets", 245 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", 246 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", 247 | "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 248 | "microsoft.extensions.apidescription.server.nuspec", 249 | "tools/Newtonsoft.Json.dll", 250 | "tools/dotnet-getdocument.deps.json", 251 | "tools/dotnet-getdocument.dll", 252 | "tools/dotnet-getdocument.runtimeconfig.json", 253 | "tools/net461-x86/GetDocument.Insider.exe", 254 | "tools/net461-x86/GetDocument.Insider.exe.config", 255 | "tools/net461/GetDocument.Insider.exe", 256 | "tools/net461/GetDocument.Insider.exe.config", 257 | "tools/netcoreapp2.1/GetDocument.Insider.deps.json", 258 | "tools/netcoreapp2.1/GetDocument.Insider.dll", 259 | "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" 260 | ] 261 | }, 262 | "Microsoft.Extensions.DependencyInjection/6.0.0": { 263 | "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", 264 | "type": "package", 265 | "path": "microsoft.extensions.dependencyinjection/6.0.0", 266 | "files": [ 267 | ".nupkg.metadata", 268 | ".signature.p7s", 269 | "Icon.png", 270 | "LICENSE.TXT", 271 | "THIRD-PARTY-NOTICES.TXT", 272 | "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", 273 | "buildTransitive/netcoreapp3.1/_._", 274 | "lib/net461/Microsoft.Extensions.DependencyInjection.dll", 275 | "lib/net461/Microsoft.Extensions.DependencyInjection.xml", 276 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", 277 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", 278 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", 279 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", 280 | "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", 281 | "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", 282 | "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", 283 | "microsoft.extensions.dependencyinjection.nuspec", 284 | "useSharedDesignerContext.txt" 285 | ] 286 | }, 287 | "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { 288 | "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", 289 | "type": "package", 290 | "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", 291 | "files": [ 292 | ".nupkg.metadata", 293 | ".signature.p7s", 294 | "Icon.png", 295 | "LICENSE.TXT", 296 | "THIRD-PARTY-NOTICES.TXT", 297 | "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", 298 | "buildTransitive/netcoreapp3.1/_._", 299 | "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", 300 | "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", 301 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", 302 | "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", 303 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", 304 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", 305 | "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", 306 | "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", 307 | "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", 308 | "microsoft.extensions.dependencyinjection.abstractions.nuspec", 309 | "useSharedDesignerContext.txt" 310 | ] 311 | }, 312 | "Microsoft.OpenApi/1.2.3": { 313 | "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", 314 | "type": "package", 315 | "path": "microsoft.openapi/1.2.3", 316 | "files": [ 317 | ".nupkg.metadata", 318 | ".signature.p7s", 319 | "lib/net46/Microsoft.OpenApi.dll", 320 | "lib/net46/Microsoft.OpenApi.pdb", 321 | "lib/net46/Microsoft.OpenApi.xml", 322 | "lib/netstandard2.0/Microsoft.OpenApi.dll", 323 | "lib/netstandard2.0/Microsoft.OpenApi.pdb", 324 | "lib/netstandard2.0/Microsoft.OpenApi.xml", 325 | "microsoft.openapi.1.2.3.nupkg.sha512", 326 | "microsoft.openapi.nuspec" 327 | ] 328 | }, 329 | "MimeKit/3.4.1": { 330 | "sha512": "0UmjauTJDukShQlwmClY0i5iRz1zwVxAMvM2VoJ5rM0FUSNQC34OZJCKMTAGEJAWYAsTh5hXZIufnUbbm/3jkQ==", 331 | "type": "package", 332 | "path": "mimekit/3.4.1", 333 | "files": [ 334 | ".nupkg.metadata", 335 | ".signature.p7s", 336 | "icons/mimekit-50.png", 337 | "lib/net462/MimeKit.dll", 338 | "lib/net462/MimeKit.pdb", 339 | "lib/net462/MimeKit.xml", 340 | "lib/net47/MimeKit.dll", 341 | "lib/net47/MimeKit.pdb", 342 | "lib/net47/MimeKit.xml", 343 | "lib/net48/MimeKit.dll", 344 | "lib/net48/MimeKit.pdb", 345 | "lib/net48/MimeKit.xml", 346 | "lib/net6.0/MimeKit.dll", 347 | "lib/net6.0/MimeKit.pdb", 348 | "lib/net6.0/MimeKit.xml", 349 | "lib/netstandard2.0/MimeKit.dll", 350 | "lib/netstandard2.0/MimeKit.pdb", 351 | "lib/netstandard2.0/MimeKit.xml", 352 | "lib/netstandard2.1/MimeKit.dll", 353 | "lib/netstandard2.1/MimeKit.pdb", 354 | "lib/netstandard2.1/MimeKit.xml", 355 | "mimekit.3.4.1.nupkg.sha512", 356 | "mimekit.nuspec" 357 | ] 358 | }, 359 | "NETCore.MailKit/2.1.0": { 360 | "sha512": "+1C0sg4YJQczp/2RVrVbKLIntg7Mou7Ie5M01UBiAsxmIarjfBRlCgKK4sEbPyGask52VRKV29/Zi+41B6LPXA==", 361 | "type": "package", 362 | "path": "netcore.mailkit/2.1.0", 363 | "files": [ 364 | ".nupkg.metadata", 365 | ".signature.p7s", 366 | "lib/netstandard2.1/NETCore.MailKit.dll", 367 | "netcore.mailkit.2.1.0.nupkg.sha512", 368 | "netcore.mailkit.nuspec" 369 | ] 370 | }, 371 | "Portable.BouncyCastle/1.9.0": { 372 | "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", 373 | "type": "package", 374 | "path": "portable.bouncycastle/1.9.0", 375 | "files": [ 376 | ".nupkg.metadata", 377 | ".signature.p7s", 378 | "lib/net40/BouncyCastle.Crypto.dll", 379 | "lib/net40/BouncyCastle.Crypto.xml", 380 | "lib/netstandard2.0/BouncyCastle.Crypto.dll", 381 | "lib/netstandard2.0/BouncyCastle.Crypto.xml", 382 | "portable.bouncycastle.1.9.0.nupkg.sha512", 383 | "portable.bouncycastle.nuspec" 384 | ] 385 | }, 386 | "Swashbuckle.AspNetCore/6.2.3": { 387 | "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", 388 | "type": "package", 389 | "path": "swashbuckle.aspnetcore/6.2.3", 390 | "files": [ 391 | ".nupkg.metadata", 392 | ".signature.p7s", 393 | "build/Swashbuckle.AspNetCore.props", 394 | "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", 395 | "swashbuckle.aspnetcore.nuspec" 396 | ] 397 | }, 398 | "Swashbuckle.AspNetCore.Swagger/6.2.3": { 399 | "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", 400 | "type": "package", 401 | "path": "swashbuckle.aspnetcore.swagger/6.2.3", 402 | "files": [ 403 | ".nupkg.metadata", 404 | ".signature.p7s", 405 | "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", 406 | "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", 407 | "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", 408 | "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", 409 | "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", 410 | "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", 411 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", 412 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", 413 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", 414 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", 415 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", 416 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", 417 | "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", 418 | "swashbuckle.aspnetcore.swagger.nuspec" 419 | ] 420 | }, 421 | "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { 422 | "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", 423 | "type": "package", 424 | "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", 425 | "files": [ 426 | ".nupkg.metadata", 427 | ".signature.p7s", 428 | "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 429 | "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 430 | "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 431 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 432 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 433 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 434 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 435 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 436 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 437 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 438 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 439 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 440 | "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", 441 | "swashbuckle.aspnetcore.swaggergen.nuspec" 442 | ] 443 | }, 444 | "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { 445 | "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", 446 | "type": "package", 447 | "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", 448 | "files": [ 449 | ".nupkg.metadata", 450 | ".signature.p7s", 451 | "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 452 | "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 453 | "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 454 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 455 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 456 | "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 457 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 458 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 459 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 460 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 461 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 462 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 463 | "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", 464 | "swashbuckle.aspnetcore.swaggerui.nuspec" 465 | ] 466 | }, 467 | "System.Formats.Asn1/6.0.0": { 468 | "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", 469 | "type": "package", 470 | "path": "system.formats.asn1/6.0.0", 471 | "files": [ 472 | ".nupkg.metadata", 473 | ".signature.p7s", 474 | "Icon.png", 475 | "LICENSE.TXT", 476 | "THIRD-PARTY-NOTICES.TXT", 477 | "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", 478 | "buildTransitive/netcoreapp3.1/_._", 479 | "lib/net461/System.Formats.Asn1.dll", 480 | "lib/net461/System.Formats.Asn1.xml", 481 | "lib/net6.0/System.Formats.Asn1.dll", 482 | "lib/net6.0/System.Formats.Asn1.xml", 483 | "lib/netstandard2.0/System.Formats.Asn1.dll", 484 | "lib/netstandard2.0/System.Formats.Asn1.xml", 485 | "system.formats.asn1.6.0.0.nupkg.sha512", 486 | "system.formats.asn1.nuspec", 487 | "useSharedDesignerContext.txt" 488 | ] 489 | }, 490 | "System.Runtime.CompilerServices.Unsafe/6.0.0": { 491 | "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", 492 | "type": "package", 493 | "path": "system.runtime.compilerservices.unsafe/6.0.0", 494 | "files": [ 495 | ".nupkg.metadata", 496 | ".signature.p7s", 497 | "Icon.png", 498 | "LICENSE.TXT", 499 | "THIRD-PARTY-NOTICES.TXT", 500 | "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", 501 | "buildTransitive/netcoreapp3.1/_._", 502 | "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", 503 | "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", 504 | "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", 505 | "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", 506 | "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", 507 | "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", 508 | "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", 509 | "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", 510 | "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", 511 | "system.runtime.compilerservices.unsafe.nuspec", 512 | "useSharedDesignerContext.txt" 513 | ] 514 | }, 515 | "System.Security.Cryptography.Pkcs/6.0.0": { 516 | "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", 517 | "type": "package", 518 | "path": "system.security.cryptography.pkcs/6.0.0", 519 | "files": [ 520 | ".nupkg.metadata", 521 | ".signature.p7s", 522 | "Icon.png", 523 | "LICENSE.TXT", 524 | "THIRD-PARTY-NOTICES.TXT", 525 | "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", 526 | "buildTransitive/netcoreapp3.1/_._", 527 | "lib/net461/System.Security.Cryptography.Pkcs.dll", 528 | "lib/net461/System.Security.Cryptography.Pkcs.xml", 529 | "lib/net6.0/System.Security.Cryptography.Pkcs.dll", 530 | "lib/net6.0/System.Security.Cryptography.Pkcs.xml", 531 | "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", 532 | "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", 533 | "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", 534 | "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", 535 | "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", 536 | "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", 537 | "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", 538 | "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", 539 | "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", 540 | "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", 541 | "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", 542 | "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", 543 | "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", 544 | "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", 545 | "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", 546 | "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", 547 | "system.security.cryptography.pkcs.6.0.0.nupkg.sha512", 548 | "system.security.cryptography.pkcs.nuspec", 549 | "useSharedDesignerContext.txt" 550 | ] 551 | } 552 | }, 553 | "projectFileDependencyGroups": { 554 | "net6.0": [ 555 | "MimeKit >= 3.4.1", 556 | "NETCore.MailKit >= 2.1.0", 557 | "Swashbuckle.AspNetCore >= 6.2.3" 558 | ] 559 | }, 560 | "packageFolders": { 561 | "C:\\Users\\sabit\\.nuget\\packages\\": {} 562 | }, 563 | "project": { 564 | "version": "1.0.0", 565 | "restore": { 566 | "projectUniqueName": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj", 567 | "projectName": "EmailAPI", 568 | "projectPath": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj", 569 | "packagesPath": "C:\\Users\\sabit\\.nuget\\packages\\", 570 | "outputPath": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\obj\\", 571 | "projectStyle": "PackageReference", 572 | "configFilePaths": [ 573 | "C:\\Users\\sabit\\AppData\\Roaming\\NuGet\\NuGet.Config", 574 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 575 | ], 576 | "originalTargetFrameworks": [ 577 | "net6.0" 578 | ], 579 | "sources": { 580 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 581 | "https://api.nuget.org/v3/index.json": {} 582 | }, 583 | "frameworks": { 584 | "net6.0": { 585 | "targetAlias": "net6.0", 586 | "projectReferences": {} 587 | } 588 | }, 589 | "warningProperties": { 590 | "warnAsError": [ 591 | "NU1605" 592 | ] 593 | } 594 | }, 595 | "frameworks": { 596 | "net6.0": { 597 | "targetAlias": "net6.0", 598 | "dependencies": { 599 | "MimeKit": { 600 | "target": "Package", 601 | "version": "[3.4.1, )" 602 | }, 603 | "NETCore.MailKit": { 604 | "target": "Package", 605 | "version": "[2.1.0, )" 606 | }, 607 | "Swashbuckle.AspNetCore": { 608 | "target": "Package", 609 | "version": "[6.2.3, )" 610 | } 611 | }, 612 | "imports": [ 613 | "net461", 614 | "net462", 615 | "net47", 616 | "net471", 617 | "net472", 618 | "net48" 619 | ], 620 | "assetTargetFallback": true, 621 | "warn": true, 622 | "frameworkReferences": { 623 | "Microsoft.AspNetCore.App": { 624 | "privateAssets": "none" 625 | }, 626 | "Microsoft.NETCore.App": { 627 | "privateAssets": "all" 628 | } 629 | }, 630 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json" 631 | } 632 | } 633 | } 634 | } -------------------------------------------------------------------------------- /EmailAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "UCSYQABp3YNHQqlRnNfrBzOMLzQVqxEKzSA1HV5zcMTPk7mALV87RXDoBrg7yFQIuoxcIQSBKscIB3xnOKIRqA==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\sabit\\source\\repos\\EmailServiceTest\\EmailAPI\\EmailAPI.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\sabit\\.nuget\\packages\\mailkit\\3.2.0\\mailkit.3.2.0.nupkg.sha512", 8 | "C:\\Users\\sabit\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 9 | "C:\\Users\\sabit\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", 10 | "C:\\Users\\sabit\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", 11 | "C:\\Users\\sabit\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", 12 | "C:\\Users\\sabit\\.nuget\\packages\\mimekit\\3.4.1\\mimekit.3.4.1.nupkg.sha512", 13 | "C:\\Users\\sabit\\.nuget\\packages\\netcore.mailkit\\2.1.0\\netcore.mailkit.2.1.0.nupkg.sha512", 14 | "C:\\Users\\sabit\\.nuget\\packages\\portable.bouncycastle\\1.9.0\\portable.bouncycastle.1.9.0.nupkg.sha512", 15 | "C:\\Users\\sabit\\.nuget\\packages\\swashbuckle.aspnetcore\\6.2.3\\swashbuckle.aspnetcore.6.2.3.nupkg.sha512", 16 | "C:\\Users\\sabit\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.2.3\\swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", 17 | "C:\\Users\\sabit\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.2.3\\swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", 18 | "C:\\Users\\sabit\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", 19 | "C:\\Users\\sabit\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", 20 | "C:\\Users\\sabit\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", 21 | "C:\\Users\\sabit\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512" 22 | ], 23 | "logs": [] 24 | } -------------------------------------------------------------------------------- /EmailAPI/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /EmailServiceTest.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.2.32616.157 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmailAPI", "EmailAPI\EmailAPI.csproj", "{BF842D1A-4618-46FA-9207-BED81D2D527C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {BF842D1A-4618-46FA-9207-BED81D2D527C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {BF842D1A-4618-46FA-9207-BED81D2D527C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {BF842D1A-4618-46FA-9207-BED81D2D527C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {BF842D1A-4618-46FA-9207-BED81D2D527C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {85995D86-774A-486D-881C-73EF30C80FE0} 24 | EndGlobalSection 25 | EndGlobal 26 | --------------------------------------------------------------------------------