OLT.Email.SendGrid
7.0.0-beta-0005
Prefix Reserved
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
This is a prerelease version of OLT.Email.SendGrid.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package OLT.Email.SendGrid --version 7.0.0-beta-0005
NuGet\Install-Package OLT.Email.SendGrid -Version 7.0.0-beta-0005
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OLT.Email.SendGrid" Version="7.0.0-beta-0005" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OLT.Email.SendGrid --version 7.0.0-beta-0005
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OLT.Email.SendGrid, 7.0.0-beta-0005"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OLT.Email.SendGrid as a Cake Addin #addin nuget:?package=OLT.Email.SendGrid&version=7.0.0-beta-0005&prerelease // Install OLT.Email.SendGrid as a Cake Tool #tool nuget:?package=OLT.Email.SendGrid&version=7.0.0-beta-0005&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SendGrid Builder pattern that introduces a whitelist
The goal was to allow email processes to run in a test environment and only send to domains and/or email addresses in a whitelist. Production environments would ignore the whitelist and send it to all recipients
Template with Data
var templateId = "d-valuefromsendgrid";
var templateData = new MyTemplateDataClass(); //Contains data tha will serialize to JSON and bind to template
var fromEmail = new OltEmailAddress
{
Name = "My Company Name",
Email = "no-reply@mycompany.com",
};
var whitelist = new OltEmailConfigurationWhitelist
{
Email = new List<string> { "someemail@email.com", "anotherperson@fake.com" },
Domain = new List<string> { "google.com", "microsoft.com" }, //Any email that ends with domain name will send in non-prod environments
};
var recipients = new OltEmailRecipients
{
To = new List<IOltEmailAddress>
{
new OltEmailAddress
{
Name = "Name Here"
Email = "someemail@email.com"
}
},
CarbonCopy = new List<IOltEmailAddress>
{
new OltEmailAddress
{
Name = "Another Name Here"
Email = "someemail@email.com"
}
}
};
var client = new OltSendGridClient()
.WithFromEmail(fromEmail)
.WithApiKey(_config.ApiKey)
.WithWhitelist(whitelist)
.WithTemplate(templateId, templateData)
.WithRecipients(recipients)
.WithCustomArg("email_uid", uid)
.WithCustomArg("some_internal_id", internalId)
//1) false will only send to whitelist domains or email addresses
//2) true will ignore whitelist and send all emails.
//3) typically controlled via config/environment variable
.EnableProductionEnvironment(false);
resultAsync = await client.SendAsync();
Template with No Data
var templateId = "d-valuefromsendgrid";
var whitelist = new OltEmailConfigurationWhitelist
{
Email = new List<string> { "someemail@email.com", "anotherperson@fake.com" },
Domain = new List<string> { "google.com", "microsoft.com" }, //Any email that ends with domain name will send in non-prod environments
};
var recipients = new OltEmailRecipients
{
To = new List<IOltEmailAddress>
{
new OltEmailAddress
{
Name = "Name Here"
Email = "someemail@email.com"
}
}
};
var client = new OltSendGridClient()
.WithFromEmail("no-reply@mycompany.com", "Company Name")
.WithApiKey(_config.ApiKey)
.WithWhitelist(whitelist)
.WithTemplate(templateId) // <----- Just send the templateId
.WithRecipients(recipients)
.EnableProductionEnvironment(true); // <---- This will send all emails ignoring the whitelist
resultAsync = await client.SendAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.Extensions.Options (>= 7.0.0)
- OLT.Email.SendGrid.Shared (>= 7.0.0-beta-0005)
- SendGrid (>= 9.28.1)
-
net6.0
- Microsoft.Extensions.Options (>= 7.0.0)
- OLT.Email.SendGrid.Shared (>= 7.0.0-beta-0005)
- SendGrid (>= 9.28.1)
-
net7.0
- Microsoft.Extensions.Options (>= 7.0.0)
- OLT.Email.SendGrid.Shared (>= 7.0.0-beta-0005)
- SendGrid (>= 9.28.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 132 | 2/21/2024 |
8.0.0-beta-0030 | 104 | 2/19/2024 |
8.0.0-beta-0025 | 131 | 1/15/2024 |
8.0.0-beta-0020 | 94 | 1/15/2024 |
8.0.0-beta-0015 | 144 | 12/29/2023 |
8.0.0-beta-0010 | 133 | 12/20/2023 |
8.0.0-beta-0005 | 142 | 12/9/2023 |
7.2.0 | 214 | 12/8/2023 |
7.2.0-beta-0007 | 112 | 12/8/2023 |
7.2.0-beta-0005 | 119 | 12/8/2023 |
7.1.0 | 171 | 10/23/2023 |
7.1.0-beta-0015 | 151 | 7/28/2023 |
7.1.0-beta-0013 | 138 | 6/28/2023 |
7.1.0-beta-0011 | 126 | 6/25/2023 |
7.1.0-beta-0006 | 138 | 6/24/2023 |
7.1.0-beta-0003 | 120 | 6/24/2023 |
7.1.0-beta-0002 | 134 | 6/24/2023 |
7.1.0-beta-0001 | 129 | 5/31/2023 |
7.0.3 | 154 | 9/25/2023 |
7.0.2 | 175 | 7/27/2023 |
7.0.1 | 189 | 7/26/2023 |
7.0.0 | 213 | 4/20/2023 |
7.0.0-beta-0010 | 148 | 4/5/2023 |
7.0.0-beta-0008 | 154 | 2/26/2023 |
7.0.0-beta-0005 | 146 | 2/12/2023 |
7.0.0-beta-0003 | 165 | 1/29/2023 |
7.0.0-beta-0001 | 159 | 1/29/2023 |
6.8.0 | 343 | 2/11/2023 |
6.8.0-beta-0003 | 132 | 2/11/2023 |
6.8.0-beta-0001 | 156 | 1/29/2023 |
6.7.2 | 337 | 1/29/2023 |
6.7.1 | 332 | 12/20/2022 |
6.7.0 | 331 | 12/17/2022 |
6.6.0 | 350 | 12/2/2022 |
6.5.4 | 350 | 11/23/2022 |
6.5.3 | 363 | 11/23/2022 |
6.5.2 | 352 | 11/14/2022 |
6.5.1 | 446 | 10/19/2022 |
6.5.0 | 438 | 10/3/2022 |
6.4.3 | 409 | 9/28/2022 |
6.4.2 | 456 | 9/26/2022 |
6.4.1 | 451 | 9/18/2022 |
6.4.0 | 438 | 8/31/2022 |
6.3.5 | 443 | 8/12/2022 |
6.3.4 | 472 | 7/25/2022 |
6.3.3 | 473 | 7/22/2022 |
6.3.2 | 532 | 7/11/2022 |
6.3.1 | 483 | 7/2/2022 |
6.3.0 | 501 | 7/1/2022 |
6.2.1 | 489 | 6/15/2022 |
6.2.0 | 481 | 6/2/2022 |
6.1.1 | 517 | 5/12/2022 |
6.1.0 | 475 | 5/1/2022 |
6.0.6 | 512 | 4/6/2022 |
6.0.5 | 505 | 4/4/2022 |
6.0.4 | 486 | 4/2/2022 |
6.0.3 | 532 | 4/1/2022 |
6.0.2 | 526 | 3/31/2022 |
6.0.1 | 507 | 3/25/2022 |
6.0.0 | 507 | 3/24/2022 |
6.0.0-beta-0035 | 201 | 3/17/2022 |
6.0.0-beta-0030 | 183 | 3/15/2022 |
6.0.0-beta-0025 | 200 | 3/14/2022 |
6.0.0-beta-0015 | 201 | 3/8/2022 |
6.0.0-beta-0011 | 214 | 3/6/2022 |
6.0.0-beta-0010 | 211 | 3/4/2022 |
6.0.0-beta-0004 | 194 | 2/28/2022 |
6.0.0-beta-0003 | 208 | 2/27/2022 |
6.0.0-beta-0002 | 202 | 2/25/2022 |
6.0.0-beta-0001 | 203 | 2/24/2022 |
5.8.0 | 506 | 2/15/2022 |
5.7.0 | 499 | 1/26/2022 |
5.6.0 | 364 | 12/7/2021 |
5.5.0 | 621 | 12/4/2021 |
5.4.2 | 5,853 | 11/24/2021 |
5.4.1 | 437 | 11/17/2021 |
5.4.0 | 348 | 11/15/2021 |
5.3.3 | 362 | 11/9/2021 |
5.3.2 | 391 | 11/5/2021 |
5.3.1 | 431 | 10/28/2021 |
5.3.0 | 400 | 9/22/2021 |
5.2.6 | 387 | 9/16/2021 |
5.2.5 | 380 | 9/13/2021 |
5.2.4 | 383 | 9/3/2021 |
5.2.3 | 358 | 8/31/2021 |
5.2.2 | 409 | 8/27/2021 |
5.2.1 | 356 | 8/25/2021 |
5.2.0 | 463 | 8/15/2021 |
5.1.4 | 422 | 7/8/2021 |
5.1.0 | 409 | 5/4/2021 |