60
BodyBuilder bodyBuilder = new BodyBuilder();
messageContent.Body = "<b>This is a test mail</b>";
bodyBuilder.HtmlBody = messageContent.Body;

I tried to embed my body to a bodybuilder but when I received the email, it returned an empty body. I have an exception that would throw an argument if the body is empty..

astropringles
  • 799
  • 1
  • 7
  • 17

4 Answers4

97

Using a BodyBuilder like you are doing is probably the easiest way.

var bodyBuilder = new BodyBuilder();
bodyBuilder.HtmlBody = "<b>This is some html text</b>";
bodyBuilder.TextBody = "This is some plain text";

message.Body = bodyBuilder.ToMessageBody();

client.Send(message);
Alex
  • 14,104
  • 11
  • 54
  • 77
jstedfast
  • 35,744
  • 5
  • 97
  • 110
39

MimeKit Documentation - Creating Messages

var message = new MimeMessage();    
message.Body = new TextPart ("html") { Text = "<b>Test Message</b>" };

"A TextPart is a leaf-node MIME part with a text media-type. The first argument to the TextPart constructor specifies the media-subtype: plain, html, enriched, rtf, and xml."

Stephen C
  • 731
  • 11
  • 11
25

One other option here if you want to be strict;

msg.Body = new TextPart(MimeKit.Text.TextFormat.Html) { Text = "<b>html content</b>" };
Josh
  • 3,442
  • 2
  • 23
  • 24
3
var bodyBuilder = new BodyBuilder();
bodyBuilder.HtmlBody = body;
bodyBuilder.TextBody = "-";

message.Body = bodyBuilder.ToMessageBody();

In some mail ISP, you should always set bodyBuilder.TextBody by value.

Lei Chi
  • 216
  • 1
  • 14