I am sending email with PHP script which is working fine, but when I use TinyMCE as editor it's not properly working. When I use a tag with server file url, it's not available, in img tag image now show in email. It's delete href and src attributes from email, I check on Gmail and Yahoo email id. what should I do now?
This code works very well for HTML contents. Here is code:-
$headers = array();
$headers[] = "MIME-Version: 1.0";
$headers[] = "From: <$from>";
$headers[] = "Content-type: text/html; charset=iso-8859-1";
mail($to, $subject, $message, implode("\r\n", $headers));