Log in

View Full Version : Forms to e-mail



Philippe
11-06-2005, 12:06 PM
hi,
I'm wondering how to let you'r forms send to your e-mail adres. the <form action="mailto: p.meersschaut@gmail.com" enctype="plain/text"> doesn't work ... he opens the mail program ... but there is no text @ all to see. any1 help me?

:confused: please help me out :confused:

Twey
11-06-2005, 12:12 PM
http://www.mail-maniac.com/

Philippe
11-06-2005, 12:35 PM
thankx!

Philippe
11-06-2005, 12:48 PM
oke ... now I just got another problem ... I'm new to forms so I don't know how to put it so it mails to my e-mail adress ... here's my web page(test page)



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="formname" method="post" action="http://www.mail-maniac.com" enctype="multipart/form-data">
<input type="hidden" name="mailto" value="mailto(at)address.com">
<input type="hidden" name="from" value="mailfrom(at)address.com">
<input type="hidden" name="subject" value="Subject line">
<input type="hidden" name="fromname" value="Your name">
<input type="hidden" name="goto" value="http://www.mail-maniac.com">
<input type="text" name="sometextfield"><br />
<input type="text" name="anothertextfield"><br />
<input type="file" name="filename"><br />
<input type="submit" name="submit" value="Submit"><br /><br/>
<a href="http://www.mail-maniac.com" target="_blank"><font size="1" face="Verdana">Mail-Maniac, free HTML email form processor</font></a>
</form>
</body>
</html>


if any1 could make it so it sends the filled form to : belgiumspecialforce@gmail.com ... I would really apreciate it!!

or just give me some advice where I should put it.

greetz
Philippe

Twey
11-06-2005, 01:40 PM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="formname" method="post" action="http://www.mail-maniac.com" enctype="multipart/form-data">
<input type="hidden" name="mailto" value="belgiumspecialforce(at)gmail.com">
<input type="hidden" name="from" value="belgiumspecialforce(at)gmail.com">
<input type="hidden" name="subject" value="Whatever you want the subject to be">
<input type="hidden" name="fromname" value="Your name">
<input type="hidden" name="goto" value="The page to go to after submitting (absolute URI)">

<!-- Your form goes here, minus <form>, </form> and <input type="submit"> tags -->

<input type="submit" name="submit" value="Submit"><br /><br/>
<a href="http://www.mail-maniac.com" target="_blank"><font size="1" face="Verdana">Mail-Maniac, free HTML email form processor</font></a>
</form>
</body>
</html>
Edit the italic bits to suit your preferences. The bold bits MUST be there.

Philippe
11-06-2005, 01:54 PM
thanx m8!