Mails with contents that are longer than one line of textarea are not sent

View: New views
1 Messages — Rating Filter:   Alert me  

Mails with contents that are longer than one line of textarea are not sent

by gmxer :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I use the SMTP function of PHP mailer and send HTML E-Mails with this configuration. When I try to submit contents that are longer than one line in the textarea, the mail isn't anymore. The Q-Mail Server says success, but I never get the Mail.

This  part of the message gets its information from textareas. As long as the content of these textareas is not on two lines, it works. Otherwhise the mail isn't sent. But there are no errors. (the function e is just a function that returns the htmlentities() result with UTF-8)
#####
$amessage .= "".e($_POST["registration_reason"])."<br /><br />";
$amessage .= "Wie sind Sie auf uns aufmerksam geworden?:<br />";
$amessage .= "".e($_POST["alert"])."<br /><br />";
$amessage .= "Welche Fragen haben Sie an uns?:<br />";
$amessage .= "".e($_POST["expectations"])."<br /><br />";
$amessage .= e($t_interest_attachment);
####

I tried really everything, but I have no idea how to fix it, because I don't get any errors. Neither from phpmailer nor from QMail. Are there any characters autoamticallz added to the textareas when there is a linebreak? Thanks for help.

BTW: When I move the whole message to plain text, I receive the mail, so there should be a problem within this content. I also receive the mail, if I take just the content from the textfields and delete the content from the textareas.