Created
February 12, 2015 11:07
-
-
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/.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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