where can i change the unicode of email !
the subject wrote like " به کیوکیو، پایتخ " BUT email message have right (good) text !
another question , can i design email template? where is the code of email template?
thanks
where can i change the unicode of email !
the subject wrote like " به کیوکیو، پایتخ " BUT email message have right (good) text !
another question , can i design email template? where is the code of email template?
thanks
as to the e-mail template you can find it in the Languages section in the admin panel, just type a necessary keyword in the search
download the file and unzip , then upload the file into this address :
ow_libraries/php_mailer
Good Luck :)
problem solved :)GOOOOOOOD!!!!! Thanks /
download the file and unzip , then upload the file into this address :
ow_libraries/php_mailer
Good Luck :)
Oxwall development team, could you please make sure to use that file or change this one line/string for all upcoming releases? That way we (users) do not have to manually change this each time a new oxwall version is released?
I think the entire community would appreciate that!
You do not necessarily need to download what drstreet provided, simply change this one string located:
ow_libraries/php_mailer/class.phpmailer.php
public $CharSet = 'iso-8859-1';
TO:
public $CharSet = 'utf-8';
It should be on line 56 I believe!
Thanks in Advance!
http://www.oxwall.org/forum/topic/21361?page=1#post-104688
please do not make changes in the default file of phpmailer
If you want to redefine the default charset you should add the following string
$mailer->CharSet = "utf-8";
into the /ow_system_plugins/base/bol/mail_service.php file
on line 123 before return $mailer; string.