LemonJello
Technical User
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
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