How do insert a line break for emails. I tried below but it still prints on one line.
$mailbody= "HELLO\r\n"; $mailbody .= "TEST\r\n"; $mailbody .= "EMAIL\r\n";
What you are doing should create line breaks on text-based email and text-based email readers. If you are sending this text as HTML, of course, it will NOT line break; for that to work you would need to add '<BR>'