email address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a form that when the person gets it, they click on tab and
fill in the boxes. They then click on the forward to button to forward the
infor to our Help Desk. Is there a way that when they fill out the infor and
click the Forward To button that the Help Desk address be automatically in
there.
Thanks,
 
Put code in the Item_Forward event handler of your published form:

Function Item_Forward(ByVal ForwardItem)
ForwardItem.To = "help desk address"
ForwardItem.Display
End Function

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top