Is it possible to format the message that is being sent from a form through php code. Right not it's just listing the different fields. Can I add a rule or any other html formatting to the type?
$subject = 'Team CSC Opportunity Registration Form';
$mailcontent = 'Opportunity Name: '.$name."\n"
.'Opportunity Description'."\n"
.'Work Description: '.$work."\n"
.'Opportunity Value: '.$ovalue."\n"
......etc
$subject = 'Team CSC Opportunity Registration Form';
$mailcontent = 'Opportunity Name: '.$name."\n"
.'Opportunity Description'."\n"
.'Work Description: '.$work."\n"
.'Opportunity Value: '.$ovalue."\n"
......etc