How can I change the character encoding for the content of the emails that are sent after the form is submitted (From UTF-8 to ISO-8859-1)?
I tried changing the code in email_entry.php to this:
$esl_from_name = iconv("UTF-8", "ISO-8859-1", $row['esl_from_name']);
$esl_from_email_address = $row['esl_from_email_address'];
$esl_subject = iconv("UTF-8", "ISO-8859-1", $row['esl_subject']);
$esl_content = iconv("UTF-8", "ISO-8859-1", $row['esl_content']);
$esl_plain_text = iconv("UTF-8", "ISO-8859-1", $row['esl_plain_text']);
and this
//content
if(!empty($esl_content)){
$admin_email_param['content'] = $esl_content;
}else{
$admin_email_param['content'] = = iconv("UTF-8", "ISO-8859-1", '{entry_data}');
}
But to no avail.
Thanks for your help,
Mike