No, I know how to take out a blank line on the form. The FormToEmail.php code sends an email with all of the form fields and whatever was put in those fields. I want to change the code in the php file so that when it sends the email, it doesn't put a blank line after each field. If that doesn't make sense, let me know. Here is the code that builds the email message. This is the code that I want to change so it doesn't put a blank line after each field and the contents of the text field.
function build_message($request_input){if(!isset($message_output)){$message_output ="";}if(!is_array($request_input)){$message_output = $request_input;}else{foreach($request_input as $key => $value){if(!empty($value)){if(!is_numeric($key)){$message_output .= str_replace("_"," ",ucfirst($key)).": ".build_message($value).PHP_EOL.PHP_EOL;}else{$message_output .= build_message($value).", ";}}}}return rtrim($message_output,", ");}