I'm using below code for php html email:

   $to      = $email; 
   $subject = 'ABC'; 
   $message = $content;
   $headers  = "MIME-Version: 1.0\r\n";
   $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
   $headers .= 'From: ABC <a@b.com>'."\r\n";
   mail($to, $subject, $message, $headers); // Send our email

where

$content='<html>
    <head>
      <title>Thanks</title>
    </head>
    <body>
        <div>
            <b>Thanks for your email</b>
        </div>
    </body>
    </html>'

Now the email received contains:

\r\n \r\n \r\n \r\n
\r\n
\r\n Thanks for your email\r\n
\r\n
\r\n 

I have read several examples, I'm not doing anything wrong as far as format of header goes. Can't identify problem, help? Also, any help suggestions with implementation of e-newsletter would be helpful.

link|improve this question

71% accept rate
1  
Please review your accept rate. Also, I think this may be a problem with your e-mail client. Which client do you use? – Jonathon Sep 10 '11 at 16:10
How does email client matter? – akashr Sep 10 '11 at 16:14
@Jonny Tom Yes, I will do that. – akashr Sep 10 '11 at 16:15
On second thoughts - is $content separated by \r\n or is it actual line returns (i.e. you hit Enter in the editor)? If it is \r\n then the ' means that PHP will not parse escaped characters and you will need to use " instead. – Jonathon Sep 10 '11 at 16:16
feedback

2 Answers

up vote 0 down vote accepted

First of all no need to use <Head> tags in a mail formatted in HTML.

Try this:

$content = '<html><body>';
$content .='<div><b>Thanks for your email</b></div>';
$content .='</body></html>';

Or this:

$content = "
<html>
    <body>
        <div>
            <b>Thanks for your email</b>
        </div>
    </body>
</html>";

One of them will do the trick.

link|improve this answer
Yep worked.. but what if $content is form-filled. – akashr Sep 10 '11 at 16:36
Which one of them worked ? And what do you mean form-filled ? If the second one worked then nothing will interfere it. – Danpe Sep 10 '11 at 16:39
Yep worked. ... – akashr Sep 10 '11 at 16:42
feedback

may be\n\r are interpreted as Encoded HTML Text .. so use html tags <br> and see for \n

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.