subram

  • Posts: 25
We're here to change the culture of electronic

gevv

  • Posts: 91
Re: Turkish Character in Mail
« Reply #2, on October 4th, 2014, 06:38 PM »
/core/app/Subs-Post.php    file

search;

Code: [Select]
if (preg_match('~@(att|comcast|bellsouth)\.[a-zA-Z.]{2,6}$~i', $to_address) === 1)

change;

Code: [Select]
if (preg_match('~@(att|comcast|bellsouth)\.[a-zA-Z.]{}$~i', $to_address) === 1)

try  :)

subram

  • Posts: 25

gevv

  • Posts: 91
Re: Turkish Character in Mail
« Reply #4, on October 7th, 2014, 01:46 PM »
Türkçe karakterleri ASCII karşılığı ile değiştirip dene

Code: [Select]
ç      ç
ı      ı
ğ     ğ
ö     ö
ş     ş
ü     ü
Ç    Ç
İ     İ
Ğ    Ð
Ö    Ö
Ş    Ş
Ü   Ü

EmailTemplates.french.php  dil dosyasında öyle yapılmış

 Untitled 1.png - 13.66 kB, 1256x384, viewed 145 times.


subram

  • Posts: 25
Re: Turkish Character in Mail
« Reply #5, on October 8th, 2014, 01:24 AM »Last edited on October 8th, 2014, 10:00 PM
Yok abi olmadı. Mail scriptinde bir sıkıntı var sanırım.

I changed character with HTML code. Not working.

gevv

  • Posts: 91