when using this piece of code is there a way to get line breaks or paragraphs in the email that is sent to the recipient? atm its just one long line of text separated by full stops (periods) and commas. any work around on this?
this the response: Hello danny, thank you for your filling out this questionaire, here are your results:\n\n\nTotal number of questions: 17.Total marks: 34 \n\nRegards, \nThe Portable Group
this was the code
Code:
mail($_POST['email'],'The Portable Group','Hello '.($_POST['name']).', thank you for filling out this questionaire, here are your results:\n\n\nTotal number of questions: '.($_POST['Acc_section8questions'] = 17).'.Total marks: '.($_POST['Acc_section8complete'] = 34).' \n\nRegards, \nThe Portable Group', "From: [email protected]");