After some trial and error, I was able to succeed in the following order. 
My code is similar to https://github.com/jstedfast/MailKit#sending-messages :
public void DoMail() { var message = new MimeMessage(); message.From.Add(new MailboxAddress("Joey", " joey@friends.com ")); message.To.Add(new MailboxAddress("Alice", " alice@wonderland.com ")); message.Subject = "How you doin?"; message.Body = new TextPart("plain") { Text = @"Hey Alice, What are you up to this weekend? Monica is throwing one of her parties on Saturday and I was hoping you could make it. Will you be my +1? -- Joey " }; using (var client = new SmtpClient()) {
For those who cannot access imgur:
Domain Name: localhost
Listen to the interface: 0.0.0.0
Port Number: 25 (Although, in the case of Dalser, Dalsier will use 26)
Extensions:
- [] Implicit SSL / TLS
- [x] 8BITMIME
- [] STARTTLS
- [] AUTH
- [x] SIZE
SSL / TLS Certificate: No
SSL / TLS Certificate Password: None
Maximum message size (bytes): 0
Receive Timeout (ms): 30000
Options:
- [] Require authentication
- [] Require a secure connection
- [] Only allow text authentication over a secure connection.
Onosa source share