[PHP] reretrieve header from email

2008-05-20 Thread Yui Hiroaki
Does anyone knows how to retrieve Header from email? Regards, Yui -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] reretrieve header from email

2008-05-20 Thread Richard Heyes
Yui Hiroaki wrote: Does anyone knows how to retrieve Header from email? Depends how you have your email. For example you could use Mail_mimeDecode, optionally in combination with Net_POP3. If it's an IMAP account you're checking, you could use the IMAP extension instead, which would also

Re: [PHP] reretrieve header from email

2008-05-20 Thread Chris
Richard Heyes wrote: Yui Hiroaki wrote: Does anyone knows how to retrieve Header from email? Depends how you have your email. For example you could use Mail_mimeDecode, optionally in combination with Net_POP3. If it's an IMAP account you're checking, you could use the IMAP extension