im running Outlook 2016, and i want to Forward specific mails to my gmail. my rule in outlook looks like this:
Apply this rule after the message arrives -> with danlon in the sender's address -> on this computer only -> Run a script
My script is as follows
Sub SendNew(Item As Outlook.MailItem)
Dim objMsg As MailItem
Set objMsg = Application.CreateItem(olMailItem)
objMsg.Body = Item.Body
objMsg.Subject = "FW: " & Item.Subject
objMsg.Recipients.Add "my-mail@gmail.com"
objMsg.Send
End Sub
Problem is that its making a new template (i guess) instead of forward command, and it is working but it doesnt move the attachments to the template.. and the attachments are the most important.
How do i do this, please keep in mind that i'm not a programmer of any sort.