Closed kripod closed 2 years ago
Greetings! We’re closing this issue because it has been open a long time and hasn’t been updated in a while and may not be getting the attention it deserves. We encourage you to check if this is still an issue in the latest release and if you find that this is still a problem, please feel free to comment or open a new issue.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread.
Is your feature request related to a problem? Please describe.
I came across this issue while trying to send an email to myself with my name included:
Unfortunately, my name came along as
Krist=F3f_Poduszl=F3
instead ofKristóf Poduszló
.Describe the solution you'd like
I found out this is due to the fact that email header words aren’t encoded as described by RFC 2047.
A combination of two libraries out there – q-encoding combined with utf8.js – could solve this problem as follows:
I think this should be done automatically, either by parsing the given addressed or providing a
Content
object of{ Data: string | undefined, Charset?: string }
, just like for theSubject
andBody.Text
.