Jump to content

E-Mail not breaking lines


Adastra

Recommended Posts

I'm sending an e-mail via a contact form, but somehow the lines aren't breaking in the text, it always looks like this:

 

lorem ipsum\r\n\r\dolor\r\n\r\n\r\sit\r\n\r\amet\r\n\r\n\r\lorem

 

 

Which is of course not readable at all. What am I doing wrong here? I'm using a few security checks and such for cleaning the field up;

$text = trim($text);
...
$text = stripslashes(strip_tags($text));
...
$text = mysql_real_escape_string($text);
.....

#and then the part where it's included in the message:
$message .= "Nachricht: {$text} \n";

 

Can any of those be causing the display problem?

Link to comment
https://forums.phpfreaks.com/topic/64091-e-mail-not-breaking-lines/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.