I've just designed my first form using the form builder and really like its simplicity. Unfortunately I have no coding knowledge what-so-ever and don't really know where to start to improve the form output that gets sent to customers and the client.
Here's the code I've currently got in the 'configure e-mail 'message:
"<!DOCTYPE html>
<html dir="ltr" lang="en">
<head><title>You got mail!</title></head>
<body style="background-color: #f9f9f9; padding-left: 110px; padding-top: 70px; padding-right: 20px; max-width: 700px; font-family: Helvetica, Arial;">
<style type="text/css">
body {background-color: #f9f9f9;padding-left: 110px;padding-top: 70px; padding-right: 20px;max-width:700px;font-family: Helvetica, Arial;}
p{font-size: 10px; color: #666666;}
h2{font-size: 12px !important;color: #666666 ! important;margin: 0px; border-bottom: 1px dotted #00A2FF; padding-bottom:3px;}
td {font-size: 12px !important; line-height: 30px;color: #666666 !important; margin: 0px;border-bottom: 1px solid #e9e9e9;}
td:first-child {font-size: 13px !important; font-weight:bold; color: #333 !important; vertical-align:text-top; min-width:100px; padding-right:5px;}
a:link {color:#666666; text-decoration:underline;} a:visited {color:#666666; text-decoration:none;} a:hover {color:#00A2FF;}
b{font-weight: bold;}
</style>
<h2 style="font-size: 12px !important;color: #666666 ! important;margin: 0px; border-bottom: 1px dotted #00A2FF; padding-bottom:3px;">An online application has been submitted.
<div>
[form_results]
</body>
</div>
</html>"
It produces an OK output but ideally I'd like the following features:
1) All email output in a basic table so it's easier to read across between question and answer
2) Only fields that have been completed by the customer appear in the e-mail
3) Key questions to be grouped according to the section breaks in my form. For example, all contact detail to be presented together in a clear way (i.e - first name, surname, contact details are grouped).
Is there an idiot's guide to configuring the email messages, could someone start me off in the right direction?

All the best
Chris
P.S - I'd be more than happy to share the form if that would help?