View Single Post
  #1  
Old February 5th 09, 10:00 PM posted to microsoft.public.outlook.program_vba
Reitanos
external usenet poster
 
Posts: 1
Default Reply with Reply To

Hi,

I'm new to Outlook VBA, so please excuse my ignorance. I'm trying to
write a macro that will set the reply to for me, but what I've got
will only work if I've already clicked on Reply. Is there something I
can add that will build the reply window for me?

My code is currently:
Sub FromSupport()
Dim MyMail As MailItem
Set MyMail = Outlook.ActiveInspector.CurrentItem
'build a reply window
***
'add Have replies sent to support
MyMail.ReplyRecipients.Add "
End Sub

Also, I know this code works, but please let me know if I'm missing
anything else.

Thanks.
Ads