I am doing a bounce-email handling with PHP. I have include the return path in the mail function, e.g:
mail($to_address, $subject, $message, $headers, "-f".$return_path ); $return_path = "[email protected]"; Now, what should my php script looks like (and where should i put it) in order to read all the bounce emails? (can show me with some sample code?)