How To Use The
tag In Email Content?
$to = 'example@gmail.com' ; $subject = 'Instant estimate message'; $message ='Name: '.$name.'\r\n'.'Email: '.$email.'\r\n'.'
Solution 1:
The problem is your <br />
tag. Be careful where to put the slash. Not before br but after it. Rikesh told you the correct way!
Solution 2:
use <br/>
tag instead of "\r\n"
. I think it may help you.
Post a Comment for "How To Use The
tag In Email Content?"