I have a simple contact form with name, email, phone number, drop down.
In order for me to receive the email with all the filled out values, I have to use name=“message[]” for all these fields.
What if I want them to be required as well? It says I have to use name=“required[]”
This is sort of a rush job so I don’t want to set up free form or learn how to use it right at the moment, so just wondering if I’m missing something with the built in contact form.
THanks
<label for="name">Name:</label>
<input type="text" id="name" name="message[]" size="40" />
<label for="Age">Age:</label>
<input type="text" id="age" name="message[]" size="40" />
<label for="phone">Phone Number:</label>
<input type="text" id="phone" name="message[]" size="40" />
<label for="pc">Postal Code:</label>
<input type="text" id="pc" name="message[]" size="40" />