0

Is there a way to set the sensitivity on an email in c#? I tried using

mail.Headers.Add("Sensitivity", "Confidential");

but nothing shows up on the email.

Chris
  • 5
  • 1
  • 3

1 Answers1

7

According to RFC 1327, the accepted values for the Sensitivity header are one of:

sensitivity = "Personal" / "Private" / "Company-Confidential"

So in your case, I would suggest trying:

mail.Headers.Add("Sensitivity", "Company-Confidential");
Community
  • 1
  • 1
James Thorpe
  • 31,411
  • 5
  • 72
  • 93