Avatar of Denver_IT
Denver_IT
Flag for United States of America

asked on 

How to I enable email forms in IIS7 on Win2008?

I am trying to write a simple web form for a survey.  I am not too web savvy so I am using HTML.  I have a win2008 server running IIS7 and i have set the SMTP mail to send to my Exchange server and I allowd an incomming connection to the exchange server for anonymous from that IP.  I can not seem to get the website to email the info though.

Any thoughts?  Below is a simple example of what I am trying to do.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
 
<body>
<form 
  action="mailto:administrator@company.com"
  method="POST"
  enctype="multipart/form-data"
  name="EmailTestForm">
 
  <p>Your Name:<br>
  <input type="text" size="20" name="VisitorName"><br>
  </p>
  <p>Operating System:</p>
  <p>
    <input type="radio" name="musictype2" value="rock" default> 
    Windows 2000<br>
  <input type="radio" name="musictype2" value="alternative"> 
  Windows XP<br>
  <input type="radio" name="musictype2" value="classical" />
  Linux
  <br>
  <input type="radio" name="musictype2" value="etc." /> 
  Mac OSX
</p>
  <p>
  What email client do you use?:
    <select name="Email Client" id="Email Client">
      <option value="Outlook 2003">Outlook 2003 
      <option value="Outlook 2007" selected="selected">Outlook 2007 
      <option value="Entourage">Entourage 
      <option value="Eudora">Eudora 
    </select>
</p>
  <p>Other Notes<br>
    <textarea name="VisitorComment" rows="4" cols="20">
    </textarea>
    <br><br>
    
    <input type="submit" value="Send the Info"> <input type="reset" value="Reset the Info">
  </p>
</form>
 
 
</body>
</html>

Open in new window

File Sharing SoftwareHTMLScripting Languages

Avatar of undefined
Last Comment
Denver_IT

8/22/2022 - Mon