I created and saved the Forward MailItem. I then created
the SafeMailItem from it.
oRdpMailNew.Item = oMapiMailNew
' Sender Email
oRdpMailNew.Fields(&H0C1F001E) = "
[email protected]"
' Sender Name
oRdpMailNew.Fields(&H0C1A001E) = "Bingo"
' Since both Sender EntryID and Search Key are binary
' fields, I'm not sure what I need to do with them
' oRdpMailNew.Fields(&H0C190102)
' oRdpMailNew.Fields(&H0C1D0102)
I checked both Sender Email and Name fields and they took
the new values. Then I displayed the email.
oMapiMailNew.Display
The From field still has another person's name and email
not mine. How do I reset the PR_Sender_XX fields
correctly? Thanks.