Am successful in breaking email and putting in 4 fields in mySQL ($from, $suject, $body, $date) but here are multiple problems:
a) In body want to keep "text" format. When sender is sending HTML (bit 7) email, how to convert email to plain "text" email. Tried
htmlentities($line);
but no success. Is there any command to convert html line to plain ascii text?
b) When sender is sending attachment, I want to curtail/detach attachment. How it can be done?
Thanks for your help.