Skip to content

Instantly share code, notes, and snippets.

@onionstand
Last active February 1, 2017 22:28
Show Gist options
  • Select an option

  • Save onionstand/c66744ac360753b63c2b3f027b35c111 to your computer and use it in GitHub Desktop.

Select an option

Save onionstand/c66744ac360753b63c2b3f027b35c111 to your computer and use it in GitHub Desktop.
Clean string for php mail function
<?php
function cleanForMail($str_for_mail) {
$val=trim(stripslashes(strip_tags($str_for_mail)));
$pattern = '/[\r\n]|Content-Type:|Bcc:|Cc:/i';
if (preg_match($pattern, $val)){
$val = NULL;
}
return $val;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment