In one of my applications, i am opening up a mailbox and reading the contents of the mailbox to find out about bounced emails. Basically my aim was to find the email-id that bounced, but i did not find any imap functions in PHP, I tried using, imap_fetchheaders, but the bounced email address is not there in the header. So finally had to parse the body of the message, and perform some string matching functions, but these bounce messages vary in different situations, i.e the body content is different, how to cope up with this situation?? Can anybody help....
Thanks in advance