I want to create a HTML form to send email.
something like this: when the user enter name, email and message, press the send button and the message send to my email address.
I searched a lot. but I couldn't find anything useful.
thanks a lot
<form id="form" action="mailto:[email protected]" method="post">
<p class="column col4"><label for="name">Name:</label><input type="text" name="name" id="name" /></p>
<p class="column col4"><label for="email">E-mail:</label><input type="text" name="email" id="email" /></p>
<p class="column col8"><label for="message">Message:</label><textarea rows="5" name="message" id="message"></textarea></p>
<p class="column col8"><input class="button" type="submit" value="Send" /></p>
</form>
this doesn't work. after press send button the outlook opens and instead of message i get name=....&message=....
my server support php.
please help me
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…