G
Guest
Hi.
I'm using this code to post Item in the current folder , and i have 2
questions.
Dim olPost As Outlook.PostItem
Set olPost = ActiveExplorer.CurrentFolder.Items.Add("IPM.Post")
olPost.BodyFormat = olFormatHTML
olPost.HTMLBody = UserForm1.TextBox1.Value
olPost.Subject = title
olPost.UnRead = True
olPost.Save
olPost.Post
Set olPost = Nothing
1: How can i change the sender name.
The default user profile is used, and i would like to change only the name.
2:Can i specified another folder instead of use the current folder and then
item.move to the specific folder.
Thanks.
I'm using this code to post Item in the current folder , and i have 2
questions.
Dim olPost As Outlook.PostItem
Set olPost = ActiveExplorer.CurrentFolder.Items.Add("IPM.Post")
olPost.BodyFormat = olFormatHTML
olPost.HTMLBody = UserForm1.TextBox1.Value
olPost.Subject = title
olPost.UnRead = True
olPost.Save
olPost.Post
Set olPost = Nothing
1: How can i change the sender name.
The default user profile is used, and i would like to change only the name.
2:Can i specified another folder instead of use the current folder and then
item.move to the specific folder.
Thanks.