<div dir="ltr">Hello,<div><br></div><div style>I've a few issues with displaying subjects and "from" in MailManager module</div><div style><br></div><div style><b>Description of issue:</b></div><div style>"From"</div>
<div style>for example, in gmail I see "Firstname, Lastname"</div><div style>in Mail Manager i see: Lastname ( only it )</div><div style><br></div><div style>"Subject"</div><div style>sometimes it is cutting of one word from string without any special chars like:</div>
<div style>"We have special offer for you" -> in mail manager we got "have special offer for you"</div><div style><br></div><div style>or "position for only 15,- z³" in mail manager we got "z³"</div>
<div style><br></div><div style><b>Solution ( mine ;) )</b></div><div style>in file: modules/MailManager/src/models/Message.php</div><div style>I changed functions:  setSubject, setFrom</div><div style><br></div><div style>
You used: @self::__mime_decode, which is causing this issues.</div><div style>I changed it to:</div><div style><div>mb_internal_encoding("UTF-8"); </div><div>$mailFrom = mb_decode_mimeheader( $mailFrom );</div><div>
$mailFrom =quoted_printable_decode( $mailFrom );</div><div><br></div><div style><b>My questions:</b></div><div style>Is it correct solution in your opinion ?</div><div style>Do you have any idea why mime_decode may caused this problems ?</div>
<div style>Do you have any other idea how to fix it ?</div><div style><br></div><div style>Regards, Rietz Artur</div></div><div style><br></div></div>