how to bold text in php mail

Discussion in 'PHP' started by adsegzy, Aug 24, 2010.

  1. #1
    Hello friends

    Am having problem bolding my text or applying other styles to my mail content. eg

    <?php

    $message= "Name: <b>$name</b>";

    ?>

    the message always appear in the receivers box as

    Name: <b>James</b> instead of

    Name: James

    What do i do?
     
    adsegzy, Aug 24, 2010 IP
  2. andymoo

    andymoo Peon

    Messages:
    169
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You need to tell mail in the headers that you want to send a html email
     
    andymoo, Aug 24, 2010 IP
  3. learnerabn

    learnerabn Peon

    Messages:
    131
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    $headers .= 'Content-type: text/html\r\n';
    and optional parameter header in your mail function.
     
    learnerabn, Aug 24, 2010 IP