EE contact forms allow the inclusion of multiple fields in the email message that the form sends, using the name=“message[]” attribute.
1. Is there any way to label those fields in the body of the message? The label attribute doesn’t seem to work. E.g.,
<input type="text" id="Title" name="message[]" />could output send a message that says,
Title: [User-entered value, no string if omitted]
2. Is there any way to make fields appear in the body of the message without making the field required? (The name=“message[]” attribute makes a field required.)
Just thought I’d check before posting these as feature requests.