/ Published in: PHP
Expand |
Embed | Plain Text
################################################################ # # Mail Header Removal # - SPAM Prevention, just removes the headers # - Original Source: http://www.digital-web.com/articles/bulletproof_contact_form_with_php/ # ################################################################ function remove_headers($string) { "/to\:/i", "/from\:/i", "/bcc\:/i", "/cc\:/i", "/Content\-Transfer\-Encoding\:/i", "/Content\-Type\:/i", "/Mime\-Version\:/i" ); } function remove_headers($string) { "/to\:/i", "/from\:/i", "/bcc\:/i", "/cc\:/i", "/Content\-Transfer\-Encoding\:/i", "/Content\-Type\:/i", "/Mime\-Version\:/i" ); }
You need to login to post a comment.
