Mail Converter text encoding - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: Mail Converter text encoding (/showthread.php?tid=1847) |
Mail Converter text encoding - addady2 - 07-01-2020 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?= It seems that Corebos ignore this encoding. How can I add it to the Mail coverter? Thanks RE: Mail Converter text encoding - JonasAndres - 07-01-2020 Try with the following code in CF5. <cfset enc = "=?windows-1255?B?" & ToBase64("הזמנה מספר "& OrderID) & "?="> RE: Mail Converter text encoding - addady2 - 07-02-2020 (07-01-2020, 07:19 PM)JonasAndres Wrote: Try with the following code in CF5. Where in the code ? RE: Mail Converter text encoding - addady2 - 08-10-2020 (07-02-2020, 05:09 AM)addady2 Wrote:(07-01-2020, 07:19 PM)JonasAndres Wrote: Try with the following code in CF5. Any direction (where is the code) will be appreciated |