I was trying to add a line break for a sentence, and I added /n in following code.
echo "Thanks for your email. /n Your orders details are below:".PHP_EOL;
echo 'Thanks for your email. /n Your orders details are below:'.PHP_EOL;
For some reasons, the I got server error as the result. How do I fix it?