Extracting email body (only last one)

R

rg

I am trying to extract the email body, but only the 'last one' Not all of the
included replies. It looks like Outlook inserts a 'line' between the
sections, is there a way to programatically detect this

TIA
 
M

Michael Bauer

Am Sun, 26 Feb 2006 05:29:02 -0800 schrieb rg:

If the replies start with a special character (e.g. '>') then you could
detect them. That would be a '>' after a vbCRLF. But be aware of that a '>'
also could be a part of the important main text. Due to that I´d probably
show a dialog with the parts which are maybe replies - and let the user
decide whether or not to delete them.
 
Top