Quick question about Contact Forms
Hi everyone,
I have a simple contact form that includes only three input fields: name, email address, and comments. All three are required.
As it stands, inquires arrive with "Contact Form" as the subject, but I would like the subject to show the sender's e-mail address or name.
This is how the form is current set up. How can I substitute "Contact Form" with either the name or email address?
Thanks for any help you can provide.
Mark
<input type="hidden" name="subject" value="Contact Form">
<li>
<label>Complete Name <span class="required">*</span></label>
<input type="text" name="field1" class="field-divided" placeholder="First">
<input type="text" name="field2" class="field-divided" placeholder="Last">
</li>
<li>
<label>Email <span class="required">*</span></label>
<input type="email" name="field3" class="field-long">
</li>
