Lockally.AspNetCore
0.1.0
dotnet add package Lockally.AspNetCore --version 0.1.0
NuGet\Install-Package Lockally.AspNetCore -Version 0.1.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="Lockally.AspNetCore" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Lockally.AspNetCore" Version="0.1.0" />
<PackageReference Include="Lockally.AspNetCore" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Lockally.AspNetCore --version 0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Lockally.AspNetCore, 0.1.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.
#:package Lockally.AspNetCore@0.1.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Lockally.AspNetCore&version=0.1.0
#tool nuget:?package=Lockally.AspNetCore&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Lockally.AspNetCore
Official Lockally integration for ASP.NET Core. Register Lockally
in DI, inject LockallyMailSender to send transactional email, and let ASP.NET Core
Identity send its confirmation and password-reset emails through Lockally.
Install
dotnet add package Lockally.AspNetCore
Register
// Program.cs
builder.Services.AddLockally(o =>
{
o.ApiKey = builder.Configuration["Lockally:ApiKey"]!; // lk_test_… runs in sandbox
o.DefaultFrom = "alerts@yourdomain.com"; // used for Identity emails
// o.BaseUrl = "https://api.lockally.com"; // optional override
});
This registers LockallyMailSender and an IEmailSender<TUser> implementation, so
ASP.NET Core Identity’s account-confirmation and password-reset emails are delivered by
Lockally automatically.
Send
public class SignupController : ControllerBase
{
private readonly LockallyMailSender _mailer;
public SignupController(LockallyMailSender mailer) => _mailer = mailer;
[HttpPost("signup")]
public async Task<IActionResult> Signup(string email)
{
var message = new LockallyMessage
{
From = "alerts@yourdomain.com",
Subject = "Welcome",
Html = "<b>Thanks for signing up.</b>",
};
message.To.Add(email);
message.ReplyTo.Add("support@yourdomain.com");
await _mailer.SendAsync(message);
return Accepted();
}
}
Mapping notes
- Reply-To is sent as a header (Lockally has no
reply_tofield). - Attachments are base64-encoded as
{ filename, contentType, contentBase64 }. - One
Idempotency-Keyis generated per send (24 h dedupe window).
License
MIT © Lockally
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Lockally.SDK (>= 0.1.0)
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 |
|---|---|---|
| 0.1.0 | 97 | 8/6/2026 |