Some email recipients get messages with =0D or =3D characters

后端 未结 2 1708
温柔的废话
温柔的废话 2020-12-29 22:33

I have a LAMP web application that emails users. Some users have complained that instead of seeing html email messages, they see weird sequences of characters such as =0D o

相关标签:
2条回答
  • 2020-12-29 22:56

    This is called quoted printable encoding. Some system that handles the mail while it is being delivered to the recipients that are seeing the offending characters messes up the encoding or the header information about the encoding.

    Check whether the encoding you are setting when sending the mail matches what you are writing to the mail and whether that is also what is received by other people.

    0 讨论(0)
  • 2020-12-29 22:58

    When you see something like =3D, what you're seeing is a single character in what's called "quoted-printable" encoding. "=3D" is, in fact, an equal sign. =0D is a Carriage Return (CR), =0A is a Line Feed (LF)

    Taken from Not all 'plain-text' is created equal...

    The link will provide an in-depth detailed description as to what is going on.

    0 讨论(0)
提交回复
热议问题