Search code examples
utf-8fusionauth

FusionAuth email subject not supporting special language characters


Is there any way to pass special language characters such as 'ąęćń' in the subject of an email template in fusionauth ?


Solution

  • The solution is to encode the string subject as MIME header using javax.mail.internet.MimeUtility

    MimeUtility.encodeText(subject, "utf-8", "B")