Berrevoets.Aspire.Client.Mail
9.0.0
dotnet add package Berrevoets.Aspire.Client.Mail --version 9.0.0
NuGet\Install-Package Berrevoets.Aspire.Client.Mail -Version 9.0.0
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="Berrevoets.Aspire.Client.Mail" Version="9.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Berrevoets.Aspire.Client.Mail --version 9.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Berrevoets.Aspire.Client.Mail, 9.0.0"
#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 Berrevoets.Aspire.Client.Mail as a Cake Addin #addin nuget:?package=Berrevoets.Aspire.Client.Mail&version=9.0.0 // Install Berrevoets.Aspire.Client.Mail as a Cake Tool #tool nuget:?package=Berrevoets.Aspire.Client.Mail&version=9.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Berrevoets.Aspire.Hosting.Mail library
Registers a mail client
Getting started
Install the package
In your Application project, install the .NET Aspire Mail client library with NuGet:
dotnet add package Berrevoets.Aspire.Hosting.Mail
Usage example
Then, in the Program.cs file of Application, add a Mail resource and use the client using the following methods:
builder.AddMailKitClient("maildev");
async (MailKitClientFactory factory, string email) =>
{
var client = await factory.GetSmtpClientAsync();
using var message = new MailMessage("newsletter@yourcompany.com", email)
{
Subject = "Welcome to our newsletter!",
Body = "Thank you for subscribing to our newsletter!"
};
await client.SendAsync(MimeMessage.CreateFromMailMessage(message));
});
Additional documentation
https://learn.microsoft.com/dotnet/aspire
Feedback & contributing
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- No dependencies.
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 |
---|---|---|
9.0.0 | 29 | 11/17/2024 |
9.0.0-preview | 29 | 11/17/2024 |
1.0.3 | 31 | 11/17/2024 |
1.0.3-preview | 28 | 11/17/2024 |
1.0.2-preview | 29 | 11/17/2024 |
1.0.1-preview | 28 | 11/17/2024 |