Re: [PHP] MIME E-mail message

2005-12-15 Thread Oli Howson
I would imagine it would be significantly faster, and you must be doing some processing to extract the email body. I'll run some tests (when I can be bothered!) and post the results ;) Not sure exactly how accurate they'll be though, cos the IMAP routines won't let you retrieve just the whole me

Re: [PHP] MIME E-mail message

2005-12-15 Thread Richard Heyes
Oli Howson wrote: Than what? The imap extension is faster and has parsing functionality built in. True, but the parsing is to be done at a completely different time, and then imap extension can't be >that< much faster, when you consider that my method is doing very little processing, and basi

Re: [PHP] MIME E-mail message

2005-12-15 Thread Oli Howson
Than what? The imap extension is faster and has parsing functionality built in. True, but the parsing is to be done at a completely different time, and then imap extension can't be >that< much faster, when you consider that my method is doing very little processing, and basically getting the me

Re: [PHP] MIME E-mail message

2005-12-15 Thread Richard Heyes
Oli Howson wrote: I'm working on a private webmail (and other) system, and am struggling a little with MIME mails. I've got a script to save all the attachments, but the thing I can't figure out is how I decide which "part" is the main email message itself (and hence which to display). Oh and

[PHP] MIME E-mail message

2005-12-14 Thread Oli Howson
I'm working on a private webmail (and other) system, and am struggling a little with MIME mails. I've got a script to save all the attachments, but the thing I can't figure out is how I decide which "part" is the main email message itself (and hence which to display). Oh and cheers for the info