Skip to content

Instantly share code, notes, and snippets.

@Willem-Siebe
Created February 12, 2015 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Willem-Siebe/cbd36caca079859b2918 to your computer and use it in GitHub Desktop.
Save Willem-Siebe/cbd36caca079859b2918 to your computer and use it in GitHub Desktop.
Disable e-mail subject encoding by Formidable, API Mandrill (if used) is taking care of this. See https://formidablepro.com/help-desk/email-subject/.
// Disable e-mail subject encoding by Formidable, API Mandrill (if used) is taking care of this, see https://gist.github.com/Willem-Siebe/cbd36caca079859b2918
add_filter('frm_encode_subject', 'wsis_frm_encode_subject');
function wsis_frm_encode_subject(){
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment