I am doing bounce-email processing with php. I have a return path in a mail function, for example:
mail ($ to_address, $ subject, $ message, $ headers, "-f". $ return_path);
$ return_path = " bounce_handle@domain.com ";
Now, what should my php script look like (and where to put it) to read all the failure messages? (can show me sample code?)
iwan_kr88
source
share