Forward Method

Applies To

JournalItem object, MailItem object, PostItem object.

Description

Executes the Forward action for the journal entry, mail message, or post. Returns the resulting copy as a new object.

Syntax

expression.Forward

expression An expression that returns an item in the Applies To list.

Example

This example retrieves the first message in the default Inbox folder and forwards it to Laura Jennings. It assumes that the name will resolve unambiguously in the Address Book.

Set myFolder = olNameSpace.GetDefaultFolder(olFolderInbox)
Set myForward = myFolder.Items(1).Forward
myForward.Recipients.Add "Laura Jennings"
myForward.Send