From b7e6d08881bdda6b887aa8041ba22d7ae56dec61 Mon Sep 17 00:00:00 2001 From: Andreas D Jung <7018968+coronabytes@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:08:43 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 66c6bce..11ae78b 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ appsettings.json "Tls": true }, "SES": { - "AccessKey": "", - "SecretAccessKey": "", + "AccessKey": "***", + "SecretAccessKey": "***", "Region": "eu-central-1" }, "Postmark": { @@ -41,16 +41,18 @@ appsettings.json "MessageStream": "outbound" }, "Mailjet": { - "ApiKey": "***" + "ApiKey": "***", + "ApiSecret": "***" }, "SendGrid": { - "ApiKey": "" + "ApiKey": "***" } } } ``` - use .NET 8 keyed services to have multiple configurations of the same provider +- appsettings is matched with "Email:{key}" ```csharp serviceCollection.AddCoreEmail(); serviceCollection.AddSmtpProvider("SMTP");