Hi Matt,
You can use Body Property to receive full message body or Text Property to receive message body text, without headers.
Here is example how you can receive full message with Body Property:
---------------------------------------------
For i = 0 To pop3.Messages.Count - 1
TextBox1.Text = TextBox1.Text + pop3.Messages(i).Body
Next i
---------------------------------------------
and for Text Property:
---------------------------------------------
For i = 0 To pop3.Messages.Count - 1
TextBox1.Text = TextBox1.Text + pop3.Messages(i).Text
Next i
---------------------------------------------
Also you can get only parts of that message. Depending how many parts are in the message and what part you want to see.
To get only some part of message we have Parts Property.
Here is example how to get part of Body:
---------------------------------------------
For i = 0 To pop3.Messages.Count - 1
TextBox1.Text = TextBox1.Text + pop3.Messages(i).Parts(1).Body
Next i
---------------------------------------------
or parts from Text:
---------------------------------------------
For i = 0 To pop3.Messages.Count - 1
TextBox1.Text = TextBox1.Text + pop3.Messages(i).Parts(0).Text
Next i
---------------------------------------------
More help for Body Property you can find here:
http://www.weonlydo.com/Pop3/Help/WODPOP3Lib~Pop3Msg~Body.html
More help for Text Property you can find here:
http://www.weonlydo.com/Pop3/Help/WODPOP3Lib~Pop3Msg~Text.html
and for Parts Property here:
http://www.weonlydo.com/Pop3/Help/WODPOP3Lib~Pop3Msg~Parts.html
Hope this helps.
Regards,
Drazen