Hi,
i use php mailler to send email but i don't know how to add <br> or <p> breaks into message that comes from other page with $_POST. I need it because message appears in email as an one long line.
$mail->Body = $_POST['message']; //Not fine
$mail->Body = "Hi,<br>How are you today.<br>Bye"; //This is what i want in above line
Thansk