Send email from website

clamp11

New Member
Hi,

I've found a mailform processor on google, but I dont know how to add a big text field, instead of the small ones I get when I use the mail-maniac example;

<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.thankyoupage.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>

I get two small textboxes, but I need one big textbox. How do I manage to get this textbox?

grz
 
You could change the line
<input type="text" name="sometextfield"><br />
with this one:
<textarea name="sometextfield" rows="10" cols="40"></textarea><br />
But that mail-maniac site is pretty dubious, I wouldn't use their service...
 
Back
Top