Sets the sensitivity of an email, as obeyed by Microsoft Outlook clients.
[C#]
EmailMessage msg = new EmailMessage( "mail.mycompany.com" );
msg.FromAddress = "me@MyCompany.com";
msg.To = "you@YourCompany.com";
msg.Subject = "Daily Newsletter";
msg.Body = "Here is our daily newsletter.....";
msg.Sensitivity = MailSensitivity.Personal;
msg.Send();
[Visual Basic]
Dim msg As New EmailMessage("mail.mycompany.com")
msg.FromAddress = "me@MyCompany.com"
msg.To = "you@YourCompany.com"
msg.Subject = "Daily Newsletter"
msg.Body = "Here is our daily newsletter....."
msg.Sensitivity = MailSensitivity.Personal
msg.Send()