I\'m trying to create a mail message using some RTF text as the mail.body, but there\'s no IsRtfBody property on System.Net.Mail.MailMessage only IsHtmlBody. The test-mails I\'ve received all contain
I\'m using System.Net.Mail.MailMessage to send emails from my C# Windows app. I originally had this: MailMessage mail = new MailMessage(\"from@address.com\", \"to@address.com\");
I\'ve got a method that basically has开发者_如何学Python a \"SendEmail\" method (it will later be used by WCF service)