I am not very technical and only trying to make this for work... I am trying to make some text boxes on my intranet web page writable. I need people to be able to access this page and fill in the boxes and have that form emailed to me.... am I asking something that makes sense? Is this possible to do?

<html>
<body>
<form action="mailto:your@mail.com" method="post" enctype="text/plain" >
FirstName:<input type="text" name="FirstName">
Email:<input type="text" name="Email">
<input type="submit" name="submit" value="Submit">
</form>  
</body>
</html>

maybe something like that can help you.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.