Re: [Tutor] strip an email

2005-06-24 Thread Bill Campbell
On Fri, Jun 24, 2005, Hugo González Monteverde wrote: >Hi nephish, > >I clearly remember it is very very simple and it is defined in the RFC. >As far as I remember, the end of the headers are signalled by an empty line. > >Try looking for '\n\n', this should do the trick. I've saved a couple of >

Re: [Tutor] strip an email

2005-06-24 Thread Hugo González Monteverde
Hi nephish, I clearly remember it is very very simple and it is defined in the RFC. As far as I remember, the end of the headers are signalled by an empty line. Try looking for '\n\n', this should do the trick. I've saved a couple of emails and it looks like this should work. something like:

Re: [Tutor] strip an email

2005-06-23 Thread Reed L. O'Brien
nephish wrote: > Does anyone know how to strip everything off of an email? > i have a little app that i am working on to read an email message and > write the > body of a message to a log file. > each email this address gets is only about three to five lines long. > but i cannot seem to get just t

[Tutor] strip an email

2005-06-22 Thread nephish
Does anyone know how to strip everything off of an email? i have a little app that i am working on to read an email message and write the body of a message to a log file. each email this address gets is only about three to five lines long. but i cannot seem to get just the body filtered through. i