Hello,
I had to change the “autoresponder_subject” in my contact.php file, and in my new message there’s the character “ç”.
Problem is, in the subject of the actual e-mail received, that character appears as “�”
What can I do so the character “ç” shows up correctly?
I’ve tried the HTML code (ç), the HTLM number (ç) and some strange Utf8 encoding I found while searching for an answer. Nothing worked so far.
Help?
Thank you
Hey kidcabide!
Please try to add this on functions.php. Add the changes the on “‘autoresponder_subject” value.
function avia_change_contact_form_args($form_args) {
$form_args['autoresponder_subject'] = __('ADD SOMETHING HERE ç','avia_framework' );
return $form_args;
}
I’m really not sure if this is going to work because the html entity rendering depends on the email clients.
http://www.campaignmonitor.com/blog/post/2994/using-html-symbol-entities-in-email/
Cheers!
Ismael