Insert in from on reply

R

Rim Dur

Using Outlook 2000

Hello out there.

I am trying to create a macro that replays to a marked mail in the
inbox and inserts e-mail adress in the "From" filed, keeps original
senders name in "To"+ an additional e-mail adress (fixed) and finaly
inserts a value in "Bcc".

This is what i tried to do. Not working obviously.

Sub MyMacro()
Set newmail = ThisOutlookSession.Item(olMailItem)
newmail.SentOnBehalfOfName = "[email protected]"
newmail.ReplyRecipients = "Who_ever_sent_the_mail" &
"[email protected]"
newmailbcc = "fixed_name"
newmail.Display

End Sub

I do not understand how to make a replay to the mail rather than
create a new mail.

Could sombody out there please help?????
 
Top