CoreBOSBB

Full Version: Mail Converter text encoding
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Some of the incoming emails are not encode well, The text appear as: ... ???????? ???????? ....
Those email are in windows-1255 encoding.

There is a sample of typical email header:

Code:
Subject: =?windows-1255?B?4/TpIPHs6ffk?=
Content-Type: text/plain; charset="windows-1255"

It seems that Corebos ignore this encoding.
How can I add it to the Mail coverter?

Thanks
Try with the following code in CF5.


<cfset enc = "=?windows-1255?B?" & ToBase64("הזמנה מספר "& OrderID) & "?=">
(07-01-2020, 07:19 PM)JonasAndres Wrote: [ -> ]Try with the following code in CF5.


<cfset enc = "=?windows-1255?B?" & ToBase64("הזמנה מספר "& OrderID) & "?=">

Where in the code ?
(07-02-2020, 05:09 AM)addady2 Wrote: [ -> ]
(07-01-2020, 07:19 PM)JonasAndres Wrote: [ -> ]Try with the following code in CF5.


<cfset enc = "=?windows-1255?B?" & ToBase64("הזמנה מספר "& OrderID) & "?=">

Where in the code ?


Any direction (where is the code) will be appreciated