Accessing User Defined Fields in Outlook
问题 So, I have a custom email form/message like below and I want to access the "Doc Title:" field value to insert it into the body of the email. I currently have this code; Function Item_Send() Item.Body = Item.Body + UserProperties.Find("TextBox1").Text End Function And I've tried multiple variations of this, such as Item.UserProperties.Find(...).Value , Find(...).Value by itself, UserProperties.Find("TextBox1", false).Text , etc. Research; CodeProject MSDN Find Method Documentation Microsoft