Search results

  1. I

    change subject and forward without FW:

    Wait, I think I got it... how's this? seems to work ;) Sub ChangeSubjectThenSend() Dim myolApp As Outlook.Application Dim aItem As Object Set myolApp = CreateObject("Outlook.Application") Set mail = myolApp.ActiveExplorer.CurrentFolder For Each aItem In mail.Items aItem.Subject = "AMD"...
  2. I

    change subject and forward without FW:

    Thanks for taking the time Diane. Would below be correct in this case? I'm not sure how to edit to your description. Please advise. Sub ChangeSubjectThenSend() Dim myolApp As Outlook.Application Dim aItem As Object Set myolApp = CreateObject("Outlook.Application") Set mail =...
  3. I

    change subject and forward without FW:

    Hello, I'm trying to make a simple rule in OL2016 that will process in outlook, identify certain emails and forward them to a specific address while changing the original subject without FW: I have this script attached to a rule and it works but when it sends, it adds FW: Sub...
Back
Top