Extract text string from undeliverable email body to excel

后端 未结 5 767
没有蜡笔的小新
没有蜡笔的小新 2021-01-13 12:50

I need some help on Outlook VBA.

I am trying to write a macro in Outlook for extracting the email address from each individual undeliverables email body.

Th

5条回答
  •  感情败类
    2021-01-13 13:06

    After frustrated several days, I finally came up a much simpler solution, which doesn't need to worry about any restriction of NDR in Outlook or even never use VBA at all...

    What I did is:

    1. Select all the non-delivery emails in Outlook
    2. Save as a ".txt" file
    3. Open Excel, open the txt file and select "Delimited" and select "Tab" as delimiter in the "Text Import Wizard"
    4. filter out the column A with "To:", then will get all the email address on column B

    Can't believe this is much simpler than VBA...

    Thank you guys for your help! Just can't really deal with the "Outlook NDR turning to unreadable characters" bug with so many restrictions on a work station, think this might be helpful!

提交回复
热议问题