Re: Sorting out the actual text of a MIME email me (General questions)
Hi Stan,
You should use PlainText Property which returns text/plain part of the message.
More help you can find here:
http://www.weonlydo.com/Pop3/Help/WODPOP3Lib~Pop3Msg~PlainText.html
Here is example how to use it:
---------------------------------------
Debug.Print Pop3.Messages(i).PlainText
---------------------------------------
HTMLText property returns text/html part of the message.
Here is example how to use it:
---------------------------------------
Debug.Print Pop3.Messages(i).HTMLText
---------------------------------------
More help you can find here:
http://www.weonlydo.com/Pop3/Help/WODPOP3Lib~Pop3Msg~HTMLText.html
Regards,
Drazen