I am trying to make a form in which users can fill out multiple fields of information that can be emailed to me. How would I do this?

Recommended Answers

All 7 Replies

it's possible in ASP.NET

post ur query in ASP.NET forum

Huh? Why can't I ask my question here?

Oh yeah, I forgot to say that I'm using OS X, so ASP.net won't work for me.

hey friend
wht r u asking clearly

I am trying to make a form in which users can fill out multiple fields of information that can be emailed to me. How would I do this?

You need to post this question in another forum because it takes more than HTML to accomplish what you are trying to do.

You will need a server-side language to communicate with the mail servers.\

Post this in a PHP or ASP forum.

Why not just do a simple HTML form?

Your form code would look something like this:

<form action="/cgi-bin/formmail/yourservermailscript.pl" method="post">
<input type="hidden" name="recipient" value="youremail@domain.com">
<input type="hidden" name="subject" value="Subject of email">
<input type="hidden" name="redirect" value="yourthankyoupg.htm">
....form fields...
....form fields...
<input type="submit" name="Submit" value="Submit">
</form>

In php,it will be done by using mail function and retrieve the values by $_POST.

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.