Sends log events by SMTP email.
Package - Serilog.Sinks.Email | Platforms - .NET 4.5
var log = new LoggerConfiguration()
.WriteTo.Email(
fromEmail: "app@example.com",
toEmail: "support@example.com",
mailServer: "smtp.example.com")
.CreateLogger();
An overload accepting EmailConnectionInfo
can be used to specify advanced options.