Hi,
I'm reading the contents of an html file that exists on the server and sending it as an HTML mail.
For some reason, some parts gets stripped and the source of the email when received shows like the following:
<html>
<head>
<title>Some Newsletter</title>
<meta http-equiv=ontent-Type' content=ext/html; charset=o-8859-1'>
</head>
<body>
<span style=ackground-color:blue;color:white'>This is some HTML formatted text</span>
</body>
</html>
It strips the first single quote of every attribute as well as the following character. If I use addslashes, it only removes the first single quote, but not the character afterwards (but is still a problem). Does anyone have insight as to why this happens? Any solutions? I think it might have something to do with the "equals sign". Thanks for any help.