Hi all…
Im still pretty much a newbie to EE, so please bare with me if this is something straight forward. I have setup the standard EE contact form and its working fine, however i need more fields than the standard form initially gives. How can i enter more fields such as company, telephone and so on… code i have so far which views but doesnt send all the fields is
{exp:email:contact_form user_recipients=“false” recipients=“brian@scandinaviandesigns.co.uk” charset=“utf-8”}
<fieldset>
<label for=“name”>Your Name: **</label>
<input type=“text” id=“name” name=“name” value=”” />
<label for=“company”>Company:</label>
<input type=“text” name=“company” id=“company” value=”” />
<label for=“from”>Your Email:</label>
<input type=“text” id=“from” name=“from” value=”{member_email}” />
<label for=“tel”>Tel:</label>
<input type=“text” id=“tel” name=“tel” value=“Phone Number” />
<label for=“message”>Enquiry Details:</label>
<textarea id=“message” name=“message” rows=“5” cols=“40”></textarea>
<input type=“hidden” name=“issubmitted” value=“true” />
<input type=“image” name=“submit” class=“button” id=“btnSendMessage” value=“submit” src=”” alt=“submit button”/>
<input name=“submitted” type=“hidden” id=“submitted” value=“true” />
</fieldset>
{/exp:email:contact_form}
