View Single Post
 
Old 06-30-2017, 04:21 AM
ozgurpeh ozgurpeh is offline Windows 10 Office 2016 for Mac
Novice
 
Join Date: Jun 2017
Posts: 3
ozgurpeh is on a distinguished road
Default

Quote:
Originally Posted by gmayor View Post
That's fairly simple using a rule to identify the incoming message and a script to create the forwarded mail e.g.

Code:
Option Explicit

Sub MyFwd(olItem As MailItem)
Dim olFWD As MailItem
Dim olInsp As Outlook.Inspector
Dim wdDoc As Object
Dim oRng As Object
    Set olFWD = olItem.Forward
    With olFWD
        .Display
        .Subject = "The new subject"
        .To = "someone@somewhere.com"
        Set olInsp = .GetInspector
        Set wdDoc = olInsp.WordEditor
        Set oRng = wdDoc.Range(0, 0)
        oRng.Text = "Please see the correspondence below."
        .Send
    End With
    olItem.UnRead = False
lbl_Exit:
    Set olFWD = Nothing
    Set olInsp = Nothing
    Set wdDoc = Nothing
    Set oRng = Nothing
    Exit Sub
End Sub
Thank you for your support,
But I only forward the certain subjects=tests,
The subjects which are contins tests, Thats why I only want to forward that subject and specific e-mail adress.
Reply With Quote