Sending Lotus Notes email through C# hiding SentBy field
问题 I have developed code,in C#, which sends email in Lotus Notes. I want SentBy(From field) in the email to be hidden. I have user the Principal field to make Custom field. NotesDocument doc = db.CreateDocument(); doc.ReplaceItemValue("Form", "Memo"); doc.ReplaceItemValue("SendTo", richTextBox1.Text.Trim().Split(',')); doc.ReplaceItemValue("Subject", richTextBox3.Text); doc.ReplaceItemValue("Principal", "Test Demo"); NotesRichTextItem _richTextItem = doc.CreateRichTextItem("Body"); _richTextItem