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
Complete thread:
- Sorting out the actual text of a MIME email messag - Stan, 2007-02-13, 12:32
- Re: Sorting out the actual text of a MIME email me - woddrazen, 2007-02-13, 13:03
- Re: Sorting out the actual text of a MIME email me - Stan, 2007-02-13, 13:36
- Re: Sorting out the actual text of a MIME email me - woddrazen, 2007-02-13, 13:41
- Re: Sorting out the actual text of a MIME email me - Stan, 2007-02-13, 13:36
- Re: Sorting out the actual text of a MIME email me - woddrazen, 2007-02-13, 13:03