I am in the process of trying to send a confirmation email through PHP from an online form. I have the following code in my page all on one line...
$message = "School Grade completed May 2003: ".$requiredgrade."\nName of School: ".$requiredschool_name."\nT-shirt Size: ".$requiredtshirt_size."\n\n";
The problem comes when I check the email that is sent and I receive the following all on one line...
School Grade completed May 2004: 3rd Grade Name of School: EHS T-shirt Size: Youth Medium 10-12
Sometimes the \n line breaks work fine. Other times they do not. Anyone else ever had this problem? Please help if you have any ideas.
Thanks!
$message = "School Grade completed May 2003: ".$requiredgrade."\nName of School: ".$requiredschool_name."\nT-shirt Size: ".$requiredtshirt_size."\n\n";
The problem comes when I check the email that is sent and I receive the following all on one line...
School Grade completed May 2004: 3rd Grade Name of School: EHS T-shirt Size: Youth Medium 10-12
Sometimes the \n line breaks work fine. Other times they do not. Anyone else ever had this problem? Please help if you have any ideas.
Thanks!