Send unicode emoji with PHPMailer

前端 未结 2 1313
遇见更好的自我
遇见更好的自我 2021-01-05 20:07

I\'m trying to send unicode emoji trough PHPMailer (5.2) but the emails I sent are received with weird characters instead of emojis. I\'m currently sending HTML emails where

2条回答
  •  醉话见心
    2021-01-05 21:02

    I needed to use the slightly different:

    $mail = new PHPMailer();
    $mail->CharSet = 'utf-8';
    

提交回复
热议问题