Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forward selected email in Outlook

Status
Not open for further replies.

LemonJello

Technical User
Joined
Jun 19, 2003
Messages
4
Location
US
Sorry but I can't find any examples of how to forward the selected email via vba.
Can someone help?
I've got this so far:
Dim app As Object
Dim email As Outlook.MailItem
Set app = CreateObject("Outlook.application")
Set email = app.CreateItem(0)

Obviously 'email.forward' won't work as this only creates a new item.

Note: I need to do this while viewing Outlook and not the actual message, so the macro should be available from the client and not normal.dot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top