ReadLine method for MailItem body?

  • Thread starter Thread starter grep
  • Start date Start date
G

grep

Trying to parse data out of a MailItem's body property. I was thinking
to cycle through the .body property line-by-line, and then do my parsing
on each line it cycles through. Unfortunately, there doesn't seem to be
a ReadLine method that applies to the .body property. So how do I parse
the message body?

grep
 
Am Tue, 03 Jan 2006 20:46:59 -0500 schrieb grep:

You could parse all the body at once or build your own "ReadLine":

Dim v() as string
v=split(body, vbcrlf)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top