siddscool19 Posted November 11, 2008 Share Posted November 11, 2008 I am using the following codings : $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; $from=$_REQUEST['from'] ; mail($email,$subject,$message,"From: $from\nContent-Type: text/html; charset=iso-8859-1"); These are working but it is having problems with quotes like it sends quote in this format " due to which my html doesn't work so how to prevent it from converting? Link to comment https://forums.phpfreaks.com/topic/132230-sending-html-with-mail/ Share on other sites More sharing options...
.josh Posted November 11, 2008 Share Posted November 11, 2008 possibly try html_entity_decode on it if that don't work it's probably the receiving mail server doing it not a whole lot you can do about that. I'm totally pulling sh!t out my arse so don't praise me if it actually works Link to comment https://forums.phpfreaks.com/topic/132230-sending-html-with-mail/#findComment-687364 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.