Link to home
Start Free TrialLog in
Avatar of DS928
DS928Flag for United States of America

asked on

EMail Form

I have this form that I want to use to send Emails with.  Its on an HTML page.  First question is: Does this have to be on a PHP page to work?  And second, What am I missing from this to make it send and Email to a specified address?  Thank you.

<h2>Contact Form</h2>
<form id="ContactForm">
  <div>
    <div  class="wrapper"> <span>Reason:</span>
      <select name="subject" id="subject">
        <option value="Inquiries">Inquiries</option>
        <option value="Press">Press</option>
        <option value="Employment">Employment</option>
        <option value="Proposals">Proposals</option>
      </select>
    </div>
    <div  class="wrapper"> <span>Full Name:</span>
      <input type="text" class="input" >
    </div>
    <div  class="wrapper"> <span>E-mail:</span>
      <input type="text" class="input" >
    </div>
    <div  class="textarea_box"> <span>Message:</span>
      <textarea name="textarea" cols="1" rows="1"></textarea>
    </div>
    <div class="wrapper"> <span>&nbsp;</span> 
    <a href="#" class="button1" onClick="document.getElementById('ContactForm').reset()"><span></span><strong>Clear</strong></a> 
    <a href="#" class="button1" onClick="document.getElementById('ContactForm').submit()"><span></span><strong>Send</strong></a> 
    </div>
  </div>
</form>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial