We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue is related with this #39
Now we use utf8_encode() function to encode conent.
\utf8_encode( \quoted_printable_decode($this->getContent()));
But this function only encodes an ISO-8859-1 string to UTF-8, so we should use iconv() function instead.
The text was updated successfully, but these errors were encountered:
Fixes ddeboer#66
00bdf7d
utf8_encode function encodes ONLY ISO-8859-1 string to UTF-8. Instead of utf8_encode it should be used iconv()
ed44bee
No branches or pull requests
This issue is related with this #39
Now we use utf8_encode() function to encode conent.
But this function only encodes an ISO-8859-1 string to UTF-8, so we should use iconv() function instead.
The text was updated successfully, but these errors were encountered: