lowcoder icon indicating copy to clipboard operation
lowcoder copied to clipboard

[Turkish Character Problem in E-mail Sending]: <�??? �??? �??? �??? �???>

Open Jomedya opened this issue 1 year ago • 1 comments
trafficstars

Is there an existing issue for this?

  • [X] I have searched the existing issues

Current Behavior

When I use the SMTP E-Mail function, a Turkish character error occurs. The content of the emails sent is sent in a meaningless manner. image (1) kopya

Expected Behavior

ğ, Ğ, ç, Ç, ş, Ş, ü, Ü, ö, Ö, ı, İ

Steps to reproduce

Turkish Character Problem in E-mail Sending

Environment

All Lowcoder Version

Additional Information

No response

Jomedya avatar Feb 29 '24 20:02 Jomedya

Next to the task that we do have to switch the internal processing 100% to UTF-8, you can use the following codes as fast remedy:

HTML entities and Unicode expressions:

ğ HTML: ğ Unicode: U+011F

Ğ HTML: Ğ Unicode: U+011E

ç HTML: ç Unicode: U+00E7

Ç HTML: Ç Unicode: U+00C7

ş HTML: ş Unicode: U+015F

Ş HTML: Ş Unicode: U+015E

ü HTML: ü Unicode: U+00FC

Ü HTML: Ü Unicode: U+00DC

ö HTML: ö Unicode: U+00F6

Ö HTML: Ö Unicode: U+00D6

ı HTML: ı Unicode: U+0131

İ HTML: İ Unicode: U+0130

FalkWolsky avatar Mar 01 '24 17:03 FalkWolsky