Hello,
This is a simple issue but I have been unable to solve this. My problem is that I am sending email using the libmail class.
$message = htmlspecialchars(stripslashes(strip_tags($message)));
Everything is working fine but if I use the " in the text, it will be diaslayed in the mail as "
. I have already tried:
mail ($strTo, $this->xheaders['Subject'], htmlentities($this->fullBody), $this->headers,"-f $rtpth");
How to solve this?