Is there any way to pass special language characters such as 'ąęćń' in the subject of an email template in fusionauth ?
The solution is to encode the string subject
as MIME header using javax.mail.internet.MimeUtility
MimeUtility.encodeText(subject, "utf-8", "B")