2
I think the problem isn't just with the contact us module, it would be with all emails.
See if you have a file called xoopsmailerlocal.php at your xoops_url/language/[your language]/
- if the file exists, make sure there's a line that looks like:
Quote:
$this->charSet = 'windows-1250';
- if the file doesn't exist, make one. Put the following in the file:
class XoopsMailerLocal extends XoopsMailer {
function XoopsMailerLocal(){
$this->XoopsMailer();
$this->charSet = 'windows-1250';
}
}
?>
and save it as xoopsmailerlocal.php in your core language folder.
You may also need to change the locale. I'm certainly no expert, but I've read that some languages need to set the locale for the mailer to function correctly.
You can set the locale in the xoops_url/language/[your language]/global.php file.
define('_CHARSET', 'windows-1250');
define('_LANGCODE', 'sk');
$original_locale = setlocale(LC_ALL, 0);
if (!setlocale(LC_ALL, 'sk')) {
setlocale(LC_ALL, $original_locale );
}
I hope this helps...
Rowd