Could I check if it is possible to send from an invalid email address?
IMail email = Mail.Html(@"<strong>HTML email</strong> with an image. ")
.Subject("3rd Party Test")
.AddVisual("Lemon.jpg")
.SetContentId("lemon@id")
.From( new MailBox("john.leong@local", "John Leong"))
I had an exception that I my email address is invalid and I would like to know if it is possible to override the validation and proceed with an invalid email address.