Quote:
Originally Posted by BBF
how i can to change the encoding in the messege?
|
Find in remindermail.php:
PHP Code:
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "To: $username <$email>" . "\r\n";
$headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";
Change:
PHP Code:
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
to the desired charset.
Upload the newly edited remindermail.php to your server.