View Full Version : Email form help


Mr. Frodo
12-12-2009, 09:02 AM
I'm trying to write an email for foe hosting on my domain. The code visually looks correct to me, but when I test it, it opens a new outlook email message window, blank aside from the email address the form points to. to view it in a page go to http://helpless-laughter.net/?page_id=262. The code is as follows:


<form method="post" enctype="text/plain" action=mailto:jen@helpless-laughter.net>
<input type="hidden" name="To" value="Hosting">
Name:<br>
<input type="text" name="Name" size="50" maxlength="100"><br><br>
Email:<br>
<input type="text" name="Email" size="50" maxlength="100"><br><br>
Age:<br>
<input type="text" name="Age" size="50" maxlength="100"><br><br>
Type of website:<br>
<input type="text" name="site" size="50" maxlength="100"><br><br>
Example of your work:<br>
<input type="text" name="question:" size="50" maxlength="100"><br><br>
Years Experience:<br>
<input type="text" name="question:" size="50" maxlength="100"><br><br>
Do you know FTP:<br>
<input type="radio" name="FTP" value="Yes">Yes<BR>
<input type="radio" name="FTP" value="No">No<br><br>
Desired Helpless-Laughter.net url:<br>
<input type="text" name="url" size="50" maxlength="100"><br><br>
Desired FTP password:<br>
<input type="text" name="fpass" size="50" maxlength="100"><br><br>
Do you need a MYSQL database<br>
<input type="radio" name="MYSQL" value="Yes">Yes<BR>
<input type="radio" name="MYSQL" value="No">No<br><br>
Desired MYSQL username:<br>
<input type="text" name="muser" size="50" maxlength="100"><br><br>
Desired MYSQL password:<br>
<input type="text" name="mpass" size="50" maxlength="100"><br><br>
AIM screenname:<br>
<input type="text" name="AIM" size="50" maxlength="100"><br><br>
Windows Live/MSN screenname:<br>
<input type="text" name="Live" size="50" maxlength="100"><br><br>
Yahoo screenname:<br>
<input type="text" name="Yahoo" size="50" maxlength="100"><br><br>
Do you want a Helpless-Laughter.net email address:<br>
<input type="radio" name="hl" value="Yes">Yes<BR>
<input type="radio" name="hl" value="No">No<br><br>

Desired @helpless-laughter.net name:<br>
<input type="text" name="hlname" size="50" maxlength="100"><br><br>
Desired @helpless-laughter.net password:<br>
<input type="text" name="hlpass" size="50" maxlength="100"><br><br>
Comments:<br>
<textarea name="Comments" rows=7 cols=46></textarea>
<br><br>
<input type="submit" value="Submit">
</form>

pretender
12-14-2009, 05:38 AM
The code visually looks correct to me, but when I test it, it opens a new outlook email message window

That type of script will open your default email program. If your wanting people to be able to email you through your site with out it launching the default email program, will probably have to have a php script. Make sure your Web Site Host allows php first

Mr. Frodo
12-17-2009, 02:01 AM
I found a couple WP plugins to do what I want but now I'm lost again. I installed and configured Contact Form 7 which worked like a top (forgive me for mt 1930's expression, lately I've been quite into a few computer games that are set in that era) and I want it to have captcha and the only plugin that is for captcha and can work with contact form 7 is called Really Simple Captcha, which when I install it and try to run the form I get this:

Warning: imagettftext() [function.imagettftext]: Could not find/open font in /home/helpless/public_html/wp-content/plugins/really-simple-captcha/really-simple-captcha.php on line 104

Warning: imagettftext() [function.imagettftext]: Could not read font in /home/helpless/public_html/wp-content/plugins/really-simple-captcha/really-simple-captcha.php on line 104

Warning: imagettftext() [function.imagettftext]: Could not read font in /home/helpless/public_html/wp-content/plugins/really-simple-captcha/really-simple-captcha.php on line 104

Warning: imagettftext() [function.imagettftext]: Could not read font in /home/helpless/public_html/wp-content/plugins/really-simple-captcha/really-simple-captcha.php on line 104


again, the link is http://helpless-laughter.net/?page_id=262 and I honestly don't know what I did wrong

pretender
12-17-2009, 04:37 AM
Does your site allow php?
Also try typing in the full url to the files
From looking at your error code the script cant find the locations of the files
I keep getting this The requested URL /function.imagettftext was not found on this server.
Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request
So you trytyping the full url in your html where you have <a href='function.imagettftext'>
Try <a href='http://nameofsite.com/function.imagettftext' for all your link
Maybe that will help

Mr. Frodo
12-17-2009, 05:09 AM
yes, I have php. my whole site management is with a wordpress installation

Mr. Frodo
12-17-2009, 08:46 PM
Also try typing in the full url to the files


I'm not understanding which file in that plugin that you're wanting me to edit