Serilog.Sinks.Email
4.0.0
Prefix Reserved
dotnet add package Serilog.Sinks.Email --version 4.0.0
NuGet\Install-Package Serilog.Sinks.Email -Version 4.0.0
<PackageReference Include="Serilog.Sinks.Email" Version="4.0.0" />
paket add Serilog.Sinks.Email --version 4.0.0
#r "nuget: Serilog.Sinks.Email, 4.0.0"
// Install Serilog.Sinks.Email as a Cake Addin #addin nuget:?package=Serilog.Sinks.Email&version=4.0.0 // Install Serilog.Sinks.Email as a Cake Tool #tool nuget:?package=Serilog.Sinks.Email&version=4.0.0
Serilog.Sinks.Email ![Build status](https://ci.appveyor.com/api/projects/status/sfvp7dw8u6aiodj1/branch/main?svg=true)
Sends log events by SMTP email.
ℹ️ Version 3.x of this package changes the name and structure of many configuration parameters from their 2.x names; see below for detailed information.
Package - Serilog.Sinks.Email
await using var log = new LoggerConfiguration()
.WriteTo.Email(
from: "app@example.com",
to: "support@example.com",
host: "smtp.example.com")
.CreateLogger();
Supported options are:
Parameter | Description |
---|---|
from |
The email address emails will be sent from. |
to |
The email address emails will be sent to. Multiple addresses can be separated with commas or semicolons. |
host |
The SMTP server to use. |
port |
The port used for the SMTP connection. The default is 25. |
connectionSecurity |
Choose the security applied to the SMTP connection. This enumeration type is supplied by MailKit. The default is Auto . |
credentials |
The network credentials to use to authenticate with the mail server. |
subject |
A message template describing the email subject. The default is "Log Messages" . |
body |
A message template describing the format of the email body. The default is "{Timestamp} [{Level}] {Message}{NewLine}{Exception}" . |
formatProvider |
Supplies culture-specific formatting information. The default is to use the current culture. |
An overload accepting EmailSinkOptions
can be used to specify advanced options such as batched and/or HTML body templates.
Sending batch email
To send batch email, supply WriteTo.Email
with a batch size:
await using var log = new LoggerConfiguration()
.WriteTo.Email(
options: new()
{
From = "app@example.com",
To = "support@example.com",
Host = "smtp.example.com",
},
batchingOptions: new()
{
BatchSizeLimit = 10,
Period = TimeSpan.FromSeconds(30),
})
.CreateLogger();
Batch formatting can be customized using options.Body
.
Sending HTML email
To send HTML email, specify a custom IBatchTextFormatter
in options.Body
and set options.IsBodyHtml
to true
:
await using var log = new LoggerConfiguration()
.WriteTo.Email(
options: new()
{
From = "app@example.com",
To = "support@example.com",
Host = "smtp.example.com",
Body = new MyHtmlBodyFormatter(),
IsBodyHtml = true,
},
batchingOptions: new()
{
BatchSizeLimit = 10,
Period = TimeSpan.FromSeconds(30),
})
.CreateLogger();
A simplistic HTML formatter is shown below:
class MyHtmlBodyFormatter : IBatchTextFormatter
{
public void FormatBatch(IEnumerable<LogEvent> logEvents, TextWriter output)
{
output.Write("<table>");
foreach (var logEvent in logEvents)
{
output.Write("<tr>");
Format(logEvent, output);
output.Write("</tr>");
}
output.Write("</table>");
}
public void Format(LogEvent logEvent, TextWriter output)
{
using var buffer = new StringWriter();
logEvent.RenderMessage(buffer);
output.Write(WebUtility.HtmlEncode(buffer.ToString()));
}
}
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 was computed. 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 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. |
.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 is compatible. net463 was computed. net47 was computed. net471 is compatible. 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. |
NuGet packages (34)
Showing the top 5 NuGet packages that depend on Serilog.Sinks.Email:
Package | Downloads |
---|---|
TianCheng.Model
实体对象基类,及其常用操作。 常用操作包括:对象转换、序列化、日志、常用异常处理、依赖注入。 |
|
Azasp.Core
Package Description |
|
Zavi.Extensions.Logging
Package Description |
|
Atlas.Framework.Web
Package Description |
|
Netsun.Forms
MVC forms and resources management - internal company package |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Serilog.Sinks.Email:
Repository | Stars |
---|---|
OmniGUI/OmniGUI
A cross-platform GUI framework from scratch just to learn
|
Version | Downloads | Last updated |
---|---|---|
4.0.0 | 311,901 | 6/9/2024 |
4.0.0-dev-00177 | 132 | 6/9/2024 |
3.0.0 | 150,037 | 2/29/2024 |
3.0.0-dev-00174 | 120 | 6/9/2024 |
3.0.0-dev-00171 | 109 | 6/9/2024 |
3.0.0-dev-00166 | 928 | 1/4/2024 |
3.0.0-dev-00161 | 521 | 12/23/2023 |
2.4.1-dev-00147 | 14,943 | 2/8/2022 |
2.4.1-dev-00135 | 8,771 | 8/9/2021 |
2.4.1-dev-00128 | 36,796 | 6/4/2021 |
2.4.0 | 2,777,416 | 9/21/2020 |
2.4.0-dev-00116 | 4,058 | 5/18/2020 |
2.3.1-dev-00101 | 5,486 | 5/2/2019 |
2.3.1-dev-00100 | 917 | 4/16/2019 |
2.3.1-dev-00092 | 2,282 | 10/30/2018 |
2.3.0 | 2,281,663 | 7/28/2017 |
2.2.2-dev-00070 | 2,323 | 3/11/2017 |
2.2.1-dev-00067 | 886 | 3/4/2017 |
2.2.0 | 61,974 | 1/22/2017 |
2.2.0-dev-00057 | 900 | 1/17/2017 |
2.1.1-dev-00056 | 848 | 1/17/2017 |
2.1.0 | 60,517 | 11/22/2016 |
2.1.0-dev-00048 | 890 | 11/22/2016 |
2.1.0-dev-00046 | 976 | 10/14/2016 |
2.0.0 | 75,466 | 7/3/2016 |
1.5.37 | 31,725 | 11/13/2015 |
1.5.34 | 1,720 | 10/13/2015 |
1.5.25 | 3,833 | 9/21/2015 |
1.5.23 | 1,385 | 9/15/2015 |
1.5.20 | 1,196 | 9/14/2015 |
1.5.15 | 3,255 | 7/30/2015 |
1.5.13 | 10,112 | 4/3/2015 |
1.5.11 | 1,271 | 4/2/2015 |
1.5.10 | 1,259 | 4/1/2015 |
1.5.9 | 1,288 | 3/26/2015 |
1.5.8 | 1,206 | 3/26/2015 |
1.5.5 | 1,418 | 3/19/2015 |
1.5.3 | 1,285 | 3/13/2015 |
1.4.196 | 1,987 | 2/22/2015 |
1.4.182 | 1,611 | 2/15/2015 |
1.4.168 | 1,447 | 2/8/2015 |
1.4.155 | 1,285 | 2/1/2015 |
1.4.139 | 1,272 | 1/23/2015 |
1.4.118 | 1,483 | 1/13/2015 |
1.4.113 | 1,544 | 1/6/2015 |
1.4.102 | 3,564 | 12/21/2014 |
1.4.99 | 1,610 | 12/18/2014 |
1.4.97 | 1,414 | 12/18/2014 |
1.4.76 | 1,593 | 12/8/2014 |
1.4.39 | 1,481 | 11/26/2014 |
1.4.34 | 1,347 | 11/24/2014 |
1.4.28 | 1,328 | 11/24/2014 |
1.4.27 | 1,350 | 11/23/2014 |
1.4.23 | 1,416 | 11/21/2014 |
1.4.22 | 1,339 | 11/21/2014 |
1.4.21 | 1,379 | 11/21/2014 |
1.4.18 | 2,317 | 11/18/2014 |
1.4.15 | 2,831 | 11/4/2014 |
1.4.14 | 1,295 | 10/23/2014 |
1.4.13 | 1,205 | 10/23/2014 |
1.4.12 | 1,311 | 10/12/2014 |
1.4.11 | 1,261 | 10/8/2014 |
1.4.10 | 1,349 | 9/26/2014 |
1.4.9 | 1,307 | 9/17/2014 |
1.4.8 | 1,382 | 9/11/2014 |
1.4.7 | 1,261 | 9/1/2014 |
1.4.6 | 1,223 | 8/31/2014 |
1.4.5 | 1,301 | 8/27/2014 |
1.4.4 | 1,275 | 8/27/2014 |
1.4.3 | 1,329 | 8/25/2014 |
1.4.2 | 1,259 | 8/23/2014 |
1.4.1 | 1,239 | 8/23/2014 |
1.3.43 | 1,257 | 8/4/2014 |
1.3.42 | 1,231 | 7/30/2014 |
1.3.41 | 1,219 | 7/28/2014 |
1.3.40 | 1,192 | 7/26/2014 |
1.3.39 | 1,287 | 7/25/2014 |
1.3.37 | 1,228 | 7/25/2014 |
1.3.36 | 1,216 | 7/20/2014 |
1.3.35 | 1,176 | 7/17/2014 |
1.3.34 | 1,337 | 7/6/2014 |
1.3.33 | 1,238 | 6/30/2014 |
1.3.30 | 1,270 | 6/19/2014 |
1.3.29 | 1,262 | 6/19/2014 |
1.3.28 | 1,307 | 6/19/2014 |
1.3.27 | 1,253 | 6/18/2014 |
1.3.26 | 1,245 | 6/18/2014 |
1.3.25 | 1,242 | 6/9/2014 |
1.3.24 | 1,261 | 5/21/2014 |
1.3.23 | 1,244 | 5/20/2014 |
1.3.20 | 1,249 | 5/18/2014 |
1.3.19 | 1,221 | 5/17/2014 |
1.3.18 | 1,212 | 5/17/2014 |
1.3.17 | 1,254 | 5/17/2014 |
1.3.16 | 1,285 | 5/17/2014 |
1.3.15 | 1,260 | 5/16/2014 |
1.3.14 | 1,294 | 5/16/2014 |
1.3.13 | 1,266 | 5/16/2014 |
1.3.12 | 1,264 | 5/14/2014 |
1.3.7 | 1,292 | 5/11/2014 |
1.3.6 | 1,218 | 5/9/2014 |
1.3.5 | 1,209 | 5/6/2014 |
1.3.4 | 1,212 | 5/4/2014 |
1.3.3 | 1,415 | 4/28/2014 |
1.3.1 | 1,485 | 4/26/2014 |
1.2.53 | 1,237 | 4/26/2014 |
1.2.52 | 1,262 | 4/24/2014 |
1.2.51 | 1,463 | 4/18/2014 |
1.2.50 | 1,361 | 4/18/2014 |
1.2.49 | 1,449 | 4/17/2014 |
1.2.48 | 1,434 | 4/14/2014 |
1.2.47 | 1,400 | 4/14/2014 |
1.2.45 | 1,431 | 4/13/2014 |
1.2.44 | 1,466 | 4/9/2014 |
1.2.41 | 1,373 | 4/7/2014 |
1.2.40 | 1,350 | 4/7/2014 |
1.2.39 | 1,340 | 3/29/2014 |
1.2.37 | 1,357 | 3/29/2014 |
1.2.29 | 1,290 | 3/16/2014 |
1.2.27 | 1,284 | 3/14/2014 |
1.2.26 | 1,269 | 3/12/2014 |
1.2.25 | 1,575 | 2/20/2014 |
0.9.9 | 1,373 | 11/23/2013 |
0.9.8 | 1,847 | 11/1/2013 |