Search results

  1. A

    Forward Outlook Email by Filtering using Macro Rule

    Hey Diane, Thanks for continuous assistance. However, it still doesn't work if the < is next after a letter (without space). Regards,
  2. A

    Forward Outlook Email by Filtering using Macro Rule

    Hello Diane, Yes, it converted to plain text but the HTML Format still there where the Raw Email Body contains < on it which is conflict on my pattern. Regards,
  3. A

    Forward Outlook Email by Filtering using Macro Rule

    Hello Diane, Can you help me build a script to strip out the HTML formatting when a new message arrive? Thank you,
  4. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, Below is my new code. I just edited the pattern, and it is almost working. My concern right now is if the < has no space on the character, it did not forward to my email. Public Sub FWItem(Item As Outlook.MailItem) Dim Email As Outlook.MailItem Dim Matches As Variant Dim RegExp As...
  5. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, Is it possible that instead of searching the < symbol on the email body, we will pop up the message using message box and the script will search it in the message box? Regards,
  6. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, I tried to add the Msgbox, and when a new message arrives, it shows up, but seems, it did not scan the email body as even there's a < symbol on it, it didn't forward the email. Thank you,
  7. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, I tried it, but it didn't do anything. Please help. Regards,
  8. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, Thank you for this. I will try this again and will keep you posted. I appreciate your help here. Regards,
  9. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, I tried what you have suggested above. The good thing is, all email that I received is now converted to Plain Text but even the mail body contains <, it will now not forwarded to my email. BTW, i used the code below for my pattern: If TypeOf Item Is Outlook.mailitem and...
  10. A

    Forward Outlook Email by Filtering using Macro Rule

    Hello Diane, Will try this and will keep you posted. Thank you,
  11. A

    Forward Outlook Email by Filtering using Macro Rule

    Hello Diane, Thank you for helping me here. Only < that I need to filter on the email body. Regards,
  12. A

    Forward Outlook Email by Filtering using Macro Rule

    Hi Diane, I applied your suggestion on my Macro Rule. Both are now working. However, even though there is no < symbol on the email body, it was still forwarding to my email. Regards,
  13. A

    Forward Outlook Email by Filtering using Macro Rule

    Hello Diane, Thank you for your swift response. Yes, I want both <60 and < 60 to be forwarded. Will try your suggestion and will keep you posted. Regards,
  14. A

    Forward Outlook Email by Filtering using Macro Rule

    Hello All, I'm having trouble coding Regex with vba Can anyone help me with missing part to make the Outlook VBA script below work? What I'm trying to do is filter the email body that contains a less than symbol <, it will forward to a specific email address. Here is so far what I have...
Back
Top