Adam W Posted April 15, 2007 Share Posted April 15, 2007 I have a form which allows a user to input a string into a textarea. This is then used to populate the body of an e-mail message which is sent to a number of people. The problen I have is if a user inputs a £ sign the e-mail contains £ How do I get the e-mail body to contain a £ sign Thanks Adam Quote Link to comment https://forums.phpfreaks.com/topic/47068-%C2%A3-signs/ Share on other sites More sharing options...
wildteen88 Posted April 15, 2007 Share Posted April 15, 2007 Set the content type of the email to HTML by adding the following header with your email: Content-type: text\html mail($to, $subject, $message, "Content-Type: text/html"); Quote Link to comment https://forums.phpfreaks.com/topic/47068-%C2%A3-signs/#findComment-229632 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.