0

As someone is adding emojis in text-area from mobile , it's not displaying well in email. Instead of showing emojis it's displaying character like 😂🤣😃.

Can anyone help to handle emojis dynamically thanks

Zedd Index
  • 344
  • 2
  • 11
  • hello, you need to be more specific. Which mobile platform, which specific application, which server applications ? – altagir Mar 20 '19 at 17:12
  • 1
    Welcome to Stackoverflow! Please read https://stackoverflow.com/help/how-to-ask and https://stackoverflow.com/help/mcve, and update your question. In short: do not write an essay explaining what you want to do, **show your code** so we can see what have you have tried so far. – gwally Mar 20 '19 at 17:28
  • @altagir Composing message from Android mobile and sending to gmail email address, using php mandrill library for email sending – Zedd Index Mar 20 '19 at 19:31
  • It could be the email client is not able to decode UTF-8. You could also try the solution presented here: https://stackoverflow.com/questions/30752752/how-can-i-send-cyrillic-emails-with-mandrill-and-windows1251-encoding –  Mar 21 '19 at 23:06

1 Answers1

0

It could be simply an UTF-8 issue in that the characters aren't being handled properly.

Jim Grant
  • 1,128
  • 2
  • 13
  • 31
  • I have already set the content type as UTF-8 in email template and also tried the email message body pass to the utf8_encoding function , but it's not work for me – Zedd Index Mar 20 '19 at 19:33