I have a couple extra fields to add the to ContactBlog.ascx form, and while I have them added I cannot seem to find a way to add them into the email. If anyone knows of a way to do this safely then please let me know.
Here is what the added code looks like:
<li class="field-item">
<CSControl:FormLabel LabelForId="tbSubject" runat="server" ResourceName="Weblog_ContactForm_OperatingSystem" LabelCssClass="field-item-header" />
<span class="field-item-input">
<asp:DropDownList LabelForID="userOS" runat="server/>
<asp:ListItem Value="Win7(32)">Windows 7 32-Bit</asp:ListItem>
[...others]
</asp:DropDownList></span>
</li>
<li class="field-item">
<CSControl:FormLabel LabelForId="tbSubject" runat="server" ResourceName="Weblog_ContactForm_ApplicationName" LabelCssClass="field-item-header" />
<span class="field-item-input">
<asp:DropDownList ID="DropDownList1" LabelForID="userOS" runat="server />
<asp:ListItem Value="DIYDeck">DIY Deck Designer</asp:ListItem>
[...others]
</asp:DropDownList></span>
</li>