0
kicks
Fluent Email in .NET
A library for sending emails in .NET using a fluent interface.
Eg.
var email = Email
.From("john@email.com")
.To("bob@email.com", "bob")
.Subject("hows it going bob")
.Body("yo dawg, sup?")
.Send();