Re: Sorting out the actual text of a MIME email me - WeOnlyDo Discussion board

Re: Sorting out the actual text of a MIME email me (General questions)

by woddrazen, Tuesday, February 13, 2007, 13:03 (6281 days ago) @ Stan

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


Complete thread: