Help Me With My Email Form Please

This is a discussion on "Help Me With My Email Form Please" within the Web Page Design section. This forum, and the thread "Help Me With My Email Form Please are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Apr 29th, 2006, 19:02
Highly Reputable Member
Join Date: Jul 2005
Location: Northampton, England
Age: 19
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to bruno89
Angry Help Me With My Email Form Please

ok ill just cut to the chase now.. Iv made this form that i need for my order page on my site im making and instead of sending the information to my email address it opens up out look express so i dont know what im doin wrong can anyone see the mistake im makeing with this code ...

Code: Select all
</font></p>
  <p align="center"><br>
</p>
  <FORM METHOD="POST" ACTION="mailto:______@_____.co.uk">  <table width="500" 
border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#CCCCCC">
    <tr>
      <td><table width="600" border="0" 
align="center" cellpadding="3" cellspacing="1">
        <tr bgcolor="#FFFFFF">
          <td colspan="2"><font size="2" 
face="Verdana, Arial, Helvetica, sans-serif"><center><b>Order form </b> </font></td>
        </tr>
        

<tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Name: 
</font></td>
          <td align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
            <input 
name="name" type="text" id="name">
          </font></td>
        </tr>
        

<tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Email: 
</font></td>
          <td align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
            <input 
name="email" type="text" id="email">
          </font></td>
 
<tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Tell: 
</font></td>
          <td align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
            <input 
name="Phone" type="text" id="Tellephone">
          </font></td>
        </tr>
        

<tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Address: 
</font></td>
          <td align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
            <input 
name="address" type="text" id="address">
          </font></td>
        </tr>
        

 </tr>
        <tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, 
sans-serif">Subject :</font></td>
          <td align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
    
        <select name="subject" id="subject">
      <option>Buy</option>
        <option>Delivery</option>
              
<option>Cancle Order</option>
              <option>Quirey</option>
                                    </select>
          
</font></td>
        </tr>
        

<tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">How 
can we contact you?</font></td>
          <td align="left">
              <font size="2" face="Verdana, Arial, Helvetica, 
sans-serif">
              <label>
              <input type="radio" name="contact_preference" value="email">
              
Email</label>
              <br>
              <label>
              <input type="radio" name="contact_preference" 
value="phone">
  Tell</label>
              </font></td>
        </tr>
        

<tr bgcolor="#FFFFFF">
          <td align="right"><font size="2" face="Verdana, Arial, Helvetica, 
sans-serif">Message:</font></td>
          <td align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
     
       <textarea name="message" cols="40" rows="6" id="message"></textarea>
          </font></td>
        </tr>
        <tr 
bgcolor="#FFFFFF">
          <td colspan="2" align="center"><input type="submit" name="Submit" value="Submit"><INPUT 
TYPE="reset"></td>
        </tr>
      </table>
   </td></tr></table></form>


-Thanx Bruno
Reply With Quote

  #2 (permalink)  
Old Apr 29th, 2006, 22:47
Most Reputable Member
Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 21
Posts: 1,093
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to sypher
Re: Help Me With My Email Form Please

thats what it does, it opens ur default mail client.

You have to usee a form mailer if you want it to send automatically.
Reply With Quote
  #3 (permalink)  
Old Apr 30th, 2006, 10:36
Highly Reputable Member
Join Date: Jul 2005
Location: Northampton, England
Age: 19
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to bruno89
Re: Help Me With My Email Form Please

how do i get that ?
Reply With Quote
  #4 (permalink)  
Old Apr 30th, 2006, 19:07
Most Reputable Member
Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 21
Posts: 1,093
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to sypher
Re: Help Me With My Email Form Please

www.hotscripts.com
Reply With Quote
  #5 (permalink)  
Old May 2nd, 2006, 00:14
Junior Member
Join Date: May 2006
Location: Manchester. UK
Age: 17
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Help Me With My Email Form Please

I suggest using PHP I have written a basic one which should be modified and you will have to add the variables in PHP to match yours.

PHP: Select all

<?php
                                                        
                                                        $subject 
="$subject"
                                                        
                                                        
$message="$detail"
                                                       
 
                                                       
$to ='EMAIL HERE!!'
                                                       
$send_contact=mail($to,$subject,$message);
                                                       
  if(
$send_contact){
  echo 
"We've recived your contact information";
  }
  else {
  echo 
"ERROR";
  }
  
?>
It should have a few anti-spam things in and other basic stuff but should work on the whole but was just a quick sketch-up.

Last edited by Dan Williamson; May 2nd, 2006 at 00:16.
Reply With Quote
  #6 (permalink)  
Old May 2nd, 2006, 00:17
Junior Member
Join Date: May 2006
Location: Manchester. UK
Age: 17
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Help Me With My Email Form Please

Stupid Lag please delete this.

Edit: Hmmm the code box seems to have messed up, you will have to scroll
Reply With Quote
  #7 (permalink)  
Old May 2nd, 2006, 12:40
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: Help Me With My Email Form Please

If you want to go the php form route, which would be my preference, you may be interested in taking a look at an article and associated files that I put together last year on fighting back against spam.

http://1ontheweb.net/1ontheweblog.html

The pdf file explains the reasoning and the code. The associated files are in the zipped file.
Reply With Quote
Reply

Tags
help, email, form

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP email form not sending email Kurt PHP Forum 1 Oct 12th, 2007 04:26
Form submits to email via php, but email is blank!!?? DH1234 PHP Forum 2 Jun 18th, 2007 10:42
HELP ME! Email form bruno89 Web Page Design 2 Apr 25th, 2006 17:42
Form to Email daveycee Web Page Design 3 Mar 16th, 2006 21:25
php email form djme PHP Forum 3 Jan 1st, 2006 22:06


All times are GMT. The time now is 18:01.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43