Html special characters are not displayed correctly in email attachment

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dreea
    New Member
    • Aug 2007
    • 37

    Html special characters are not displayed correctly in email attachment

    Hello!
    I am sending an email with attachment and html special characters such as ® is displayed "®". Also the ™ characters is displayed "ââ".
    What can I do to make these characters display correctly?
    Thank you...
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by Dreea
    Hello!
    I am sending an email with attachment and html special characters such as ® is displayed "®". Also the ™ characters is displayed "ââ".
    What can I do to make these characters display correctly?
    Thank you...
    Seeing the code you are using the send the email might help?

    You are probably not formatting the email correctly.

    Comment

    • ronverdonk
      Recognized Expert Specialist
      • Jul 2006
      • 4259

      #3
      Show the message code or what is the charset of your Content-type header information, like in[php]
      // add headers for utf-8 message
      $headers .= "MIME-Version: 1.0\r\n";
      $headers .= "Content-type: text/plain; charset=utf-8\r\n";[/php]Ronald

      Comment

      Working...