Jul 27, 2008

Email Form Code

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > HTML, XML etc..

free web hosting

Email Form Code

coolcat50
I want to create my own e-mail form for my site and I don't quite know if JavaScript or PHP is required. I use my Nintendo Wii to manage my sites so I only can use what my webhost allows. I am using Angelfire for my main site and InvisionPlus for my forums. I'm planning on switching to Trap17 for my main site. Well here is my current code. Please tell me what I need to change.
CODE
<form action="mailto:EMAIL" method="post">
<input type="text" value="From"><br />
<input type="text" value="Subject"><br />
<textarea cols="5" rows="10" wrap="true">
Message
</textarea><br />
<input type="submit" value="Send"> <input type="reset" value="Reset">
</form>

Reply

galexcd
If I understand what you are asking this should work. You will need a webhost with php, and its own mailservers, which trap17 has both! (I think)

Try this:
CODE
<?php
if(isset($_POST['From'])){
if(mail("YOUREMAIL@GOES.HERE",$_POST['Subject'],$_POST['Message'],"From: ".$_POST['From']))
echo'<font color="green">Your message was sent!</font>';
else echo'<font color="red">There was an error sending the message</font>';
}else{
?>
<form method="post">
<input type="text" name="From" value="From"><br />
<input type="text" name="Subject" value="Subject"><br />
<textarea cols="5" rows="10" wrap="true" name="Message">
Message
</textarea><br />
<input type="submit" value="Send"> <input type="reset" value="Reset">
</form>
<?php
}
?>

 

 

 


Reply

coolcat50
Thanks! No copy-paste though sad.gif. I'm new to PHP so I could never have coded that.

Reply

galexcd
What do you mean "no copy-paste"? Does it work? And is that what you wanted it to do?

Reply

coolcat50
That's what I needed.

Can't test it yet.(Trying to get 10 credits)

I can't select the text, copy it, and paste it somewhere else.

Reply

MotU2510
Try having a look at W3Schools PHP Email tutorial which can be found here. I found this tutorial a help many a-time when coding feedback forms.

Reply

sonesay
How would the email look from the recievers end? I mean would they see the return address of the email something linke yourusername@trap17.com?

Reply

galexcd
QUOTE(alex7h3pr0gr4m3r @ Oct 5 2007, 12:54 PM) *
CODE
if(mail("YOUREMAIL@GOES.HERE",$_POST['Subject'],$_POST['Message'],"From: ".$_POST['From']))


They will see whatever you put in for YOUREMAIL@GOES.HERE. Any string you put in there is what they will see as from. I'd advise making it a real email address otherwise they won't know what email to return it to.

If you want to you could even change the domain name behind the @ symbol, but they can always see the actual domain that mailed it by looking at the headers of the original mailed data, but that data is usually hidden from the user unless you specifically request it.

Reply

coolcat50
Thanks! I'm just trying to code a support form for troubleshooting.
I'm a noob to programming and I'm trying to get into it. Lol.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. code hmtl audio file - 192.15 hr back. (1)
Similar Topics

Keywords : email, form, code

  1. Vb 2008 Linking To Another Form..
    (0)
  2. Add Flashing Inbox To Invisionfree Forum
    Html code for invsiionfree!! (0)
    Do you find it annoying when you are on your invisionfree forum, and you get a new message, and it
    ends up taking you 5 minutes to notice? This code makes the inbox link flash bold red saying how
    many messages you have. In version 1 the word inbox stays the same, and doesnt change at all (for
    Example this is flashing: Inbox (2) In version 2 (the second code) the word inbox changes to
    messages (constantly, so that if you have none, it says messages (0) instead of inbox (0). It still
    flashes Red Put the following In the Header and Body Section (Admin Cp>>>Skinning ....
  3. Why Doesn't This Code Work On Computinghost?
    (2)
    Here is the script: Rcon Connection Client IP: Port: Password Cmd:
    $ip = $_POST ; if (!$ip) die(); $port = $_POST ; if
    (!$port) die(); $pass = $_POST ; if (!$pass) die(); $passlen =
    strlen($pass); $cmd = $_POST ; if (!$cmd) die(); $cmdlen =
    strlen($cmd); $packet = 'SAMP'; $packet .= chr(strtok($ip,
    '.')).chr(strtok('.')).chr(strtok('.')).chr(strtok('.'));
    $packet .= ch....
  4. My Hosting Request Email... [resolved]
    (3)
    Hi, could you re-send the hosting email, as my mailbox has been going wrong recently, so i think the
    email was lost. Thanks... minimcmonkey....
  5. Application Form [approved]
    (2)
    PRESENT CREDITS : HOSTING CREDITS : 37.65 Forum Username : Dhruv Display Username: Dhruv Email
    Address:dhruvin_patel@hotmail.co.uk My request is for: HOSTING PACKAGE 1 Your Registered Domain
    Name or Desired Trap17 Subdomain Name: tutorial-linker.trap17.com Introduce Yourself: Your hobbies,
    interests, talents, etc. Let the forum know you better. • My name is Dhruvin. Hobbies: Girls, gaming
    and computers. I have no talents I'm just a all rounder can do everything if i like biggrin.gif
    .Live in United Kingdom. And am a student. Desired Hosting Account Username: 8....
  6. Create Table - Mysql Code - Help
    (1)
    I need your feedback about setting the database issues. Please, review them and correct some entries
    in the code if they got some mistakes. This is the code itself: SQL CREATE TABLE
    `news` ( `id` int(250) NOT NULL auto_increment, `title` varchar(255)
    NOT NULL default '', `text` text NOT NULL, `author` varchar(255) NOT
    NULL default '', `valid` varchar(255) NOT NULL default '',
    `date` varchar(255) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE = ....
  7. Php Source Code Unveiled In Browser?
    is that possible? (7)
    I am quite new to PHP and this concern came to my mind after playing around a bit with it... When
    PHP is not correctly configured on the web server the source code of a php file we try to access
    through a browser will be shown instead of the result of the code itself. This will normally not
    happen when PHP is working properly, but I was just wondering if it could still be possible to see
    that code if a user wanted to or if something on the server failed. This would for example expose
    sensitive information like mysql passwords and so on... Is anything like that possib....
  8. Html Form!
    Using MySQL?! (4)
    Hey, I need your help again! I need some good working tutorial how I can update my SQL through
    HTML form. I did use some tutorials online found with the help of google; but they do not work
    properly; I mean there are still small mistakes. I need to have a good tutorial to follow. It
    should be based on security and more things. It has to be done in proper way.......
  9. Mozilla: Firefox Plugin Shipped With Malicious Code
    (3)
    This piece of news only affect Vietnamese users as the Vietnam language package was infected with
    malware trojan called e Xorer, and so if you downloaded this language pack in the last few weeks run
    a scan and the trojan should be picked up. Although this trojan is only a couple of months old and
    so I don't think everyone has something for it, but check at your vendors website and see if
    they have a solution for it. As for the cause of this infected plugin, they assume the authors
    computer was infected at the time when they upload this plugin to the mozilla website....
  10. Paypal Email
    where can i find my paypal email? HELP anyone (3)
    Hi guys Im quite confused with the way paypal works. i know that i can pay other people thats easy
    to me.. but how do people pay me? for example, there is a site that pays people to search stuff
    using their search engine.. but the payment details you have to provide for paypal is your paypal
    email address. do they mean like the email address you used to sign up to paypal? or do you get a
    paypal email address when you sign up? any one know? let me know thanks really need the help....
  11. Can You Suggest A Good Free Email Server To Download?
    (2)
    Howdy, almost in response to my post about IMAP and PHP:
    http://www.trap17.com/forums/php-imap-read...elp-t56913.html (i still need help with this so please
    if you have experience in PHP and accessing emails using PHP help!) Im thinking i need a new
    mail server to rule out the possibility it could be my current mail server. Now currently im using
    the mail server that comes with the XAMPP package, the mail server is mercury32 version 4.something
    i know it supports the IMAP protocol because the docs say so and it has configs for IMAP. Ive messed
    around with it and ....
  12. Php Code?
    Mathematical Applications (12)
    Hello, everyone. The help is needed again. How can I make calculator in PHP language? That will act
    like that a user just type in the fields known values, then click the button, and it's going to
    be solved automatically. In other words, have can I write a formula in PHP, how to plug it inside
    that language. For example, the formula to find a peremeter of square is: P=4a. So, a user
    just can write the known value which is peremeter itself and it will find the side of a square; and
    vice versa. If you can write many things how to do such formulas, such as comp....
  13. How Do I Code A Design?
    (6)
    Okey, so I saw another topic here regarding how to make a design. I know how to do that, so that is
    no problem. But I have always had some problems on how to code a design. I am tired of that I always
    need to use some sort of program, drag&drop webhost (like piczo) or use a free design I found
    online. I have noticed that people need to "cut" the design in different parts, but I have never
    understood what way the do it. So I do not understand anything about this, and really need some
    help. I will be happy for all help I get. /smile.gif" style="vertical-align:middle"....
  14. Html Code Tester. Online Script
    (15)
    Yes, yes. I have another script that I have written and I am distributing. I am not entirely sure if
    this works. I have not tested it yet, but I will later and post back with a demo and fix it up.
    Current script: CODE <?php //Save this as something like htmltest.php function
    CheckForm() { $html_unsafe=$_POST['code']; //Gives us our user
    input $html_safe=str_replace("<?php"," ",$html_unsafe);
    //Starts security measures $html_safe=str_replace("?>","
    ",$html_sa....
  15. Free Email Service
    I am looking to start a free Email service (10)
    So i find my self sitting at my server, looking at whats been going on lately. Then i notice that at
    one point in time i was offering Email and i thought to myself "You know what? I could really
    attract some people if i started that again!", but there was one problem in my way! I dont
    want to host this service on my server, i want it to be hosted remotely. I also want it to be free.
    So here is what im looking for: A website that offers user@mydomainname.com email service At least
    1GB per mail box guaranteed 24/7 access $0.00 price If anyone knows of such a s....
  16. Email For My Members
    (7)
    Dose any one know where i can get a free email serves to offer to my website members. I would like
    it to be remotley hosted. I would also like it to be username@mydomain.com. I would like a free
    service. I can deal with a pay one as long as it is not on $20 a month. Silent Shadow
    www.zoneender.blogspot.com ....
  17. Get 30 Gb Email For Free
    let us talk about , email system for huge data ! (30)
    Friends here we are talking about largest email, free System http://www.30gigs.com this one is
    good and can handel many file at a time. plz let me know any one having this type of information
    ! Also for small user www.walla.com is good one....
  18. Each And Every Nokia Code For Your Mobile
    (6)
    Nokia 3210/5110/6110 And All Most Works In Most Of The Nokia Phones. QUOTE To view IMEI number
    *#06# To view Software Version enter *#0000# To view Status of Sim Clock Stop. Enter *#746025625#
    Latest Version is under Phone Info Type is NSE-3NX *#92702689# offers you Serial Number and also
    IMEI number. There are various options to scroll here. The code is easier to remember as *#war0anty#
    (warranty) The next screen is the date of manufacture in the format Made: 1197 The next screen is
    the purchase date in the format Purchasing Date: 1197 (this can be edited) The nex....
  19. Have Diferences Of Performance Form Ps2 Full Console To Mini-ps2?
    (8)
    Hi. Please if anybody test a mini-ps2. Have diferences of performance form PS2 full console to
    mini-ps2? thanks.....
  20. Wap Source Code Viewer
    Mobile/wap source code viewer page (4)
    This is a source code viewer that will workl on wap/mobile sites but you can easily convert it to
    work on web im sure ;-) CODE <? header("Content-Type:
    text/vnd.wap.wml"); echo '<?xml version="1.0"
    encoding="utf-8"?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
    "http://www.wapforum.org/DTD/wml_1.1.xml"> <wml> <head><meta
    http-equiv="Cache-Control" content="no-cache"
    forua="true"/></head> <card title="s60.nerds.....
  21. Earn Money By Reading Emails
    10 cent per email (52)
    Hi, this site is called http://www.1-800-mail.com/ You earn money by reading emails, they sent
    you 15-20 emails per day, you click in the link and you have to visit the page for 60 seconds, then
    you ot 10 cents They gave you 20 U$$ singup credit! The only bad thin is for
    minimium you have to retired 125 U$$ Now i earn You have directly earned: $
    30.1400 You have earned from your Downline: $ 0.0000 Your account balance after all
    transactions: $ 30.1400 10 U$$ (20 no because is singup credit) I dont think is a ....
  22. Simple C File Handling In Action
    Small code snipet which covers most of basic file handling and navigat (3)
    Yesterday I suddenly got a lot of work. The same work we try to push off, yes you are right all
    formalities to get the code review incorporated and update all source code files with code review
    headers. Imagine if you need to open 300 files one by one and append code review headers at the
    end. Since most files are reviewed in groups of 20 to 30 files. We require one header to be placed
    in say 20 to 30 files. To simplify I went back to my class assignment days and wrote this small c
    utility to open all files passed on command line and open attach code review headers an....
  23. Send Anonymous Email
    Great (18)
    Ever wanted to send someone an anonymous email withouth the slightest chance to tracing it to you?
    Try this then: http://formmail.cgiworld.net/email.cgi?rec...youwanttosendto Enter the email
    address in the link and the message you want to send and cgiworld.net will send it to you. Example
    http://formmail.cgiworld.net/email.cgi?rec...r=xxx@yahoo.com Great for pranks or for any other
    anonymous needs! ( I admit, spam is probably a definite issuses in services like this
    including the Send Your Email To Anything@mailinator.com topic below me. ) /bli....
  24. Myspace Music Player
    Anyone have the code? (9)
    Hey, I was looking around on MySpace to see if they had a particular song with a player that you see
    on many different MySpaces, but they did not have one for the song I wanted. I was wondering if
    anyone had the proper code for a music player. I do have the song I want and have the capability to
    upload it, but I just need the code for it. If you can help at all I'd really appreciate it.
    Example on the top right of this MySpace (but I just want a one song player):
    http://www.myspace.com/ofarevolution ....
  25. Form To Php Mail. Attachment
    (14)
    i know there are a few topics talk about attachment problem, but i want to know if anyone could show
    me a basic code for attaching files like pictures with the message. I made a html form, and
    redirect the information to my mail.php file to process the information and send it to my email. I
    want to know what do i have to do to attach files like pictures. I tried to search on google, and
    the codes are so complicated (i'm an amateur at this). Would it be possilbe if you could show me
    the code and explain to me what it does and how i could customize it to fit my needs?....
  26. Html Tag For A Code Box
    Where You Put HTML Code For Your Users (4)
    Well I have seen it all over the web. Lots of sites have code boxes so you can promote them or they
    show you a code you can use for javascript and stuff like that. I would like to know the HTML code
    for those boxes. Thanks in advance for your help.....
  27. *** Click Here To Get Your Free Hosting ***
    Trap17 Free Web Hosting Request Form - FILL OUT THIS FORM (1)
    Welcome to Trap17 Free Web Hosting. Before you start, read the Trap17 Readme . NOTE:
    Trap17 is not like other forums where you can still survive without reading stickies. If you
    don't read the Trap17 sticky you will NOT UNDERSTAND how to get hosting. Please take a few
    minutes to do that now. Some more info: A NOTE TO NEW MEMBERS (those who haven't yet
    participated in our forums) Before you post an application, You must participate in our forum and
    collect "Hosting Credits". You earn "Hosting Credits" when you make a post. You should make good
    genui....
  28. Redirect Code Help
    (8)
    Can someone give me the code which redirects you automatically in the whole page instead of only in
    the frame? I'm using this code, but it just redirects inside a frame... CODE <meta
    HTTP-EQUIV="REFRESH" content="0; url=http://www.something.com"> But now
    .tk has added a ad to the pages so I don't want to use it anymore, so I want that people
    entering the site is being redirected to the "real" domain name now.......
  29. Free Windowsxp Sp2 Cd From Microsoft
    just fill the request form and recive it (12)
    microsoft offer 100% free windows xp sp2. just go to this link
    http://www.microsoft.com/windowsxp/downloa...us/default.mspx and fill your address they will send
    you the cd to you. I just recive the cd yesterday. /biggrin.gif' border='0'
    style='vertical-align:middle' alt='biggrin.gif' /> I see new feature like directx 9c , WMP9 ,
    firewall , and the one I like is popup blocker! /wink.gif' border='0'
    style='vertical-align:middle' alt='wink.gif' /> PS. waiting for the cd about 1-2 week if you
    write an exact address.....
  30. How do you test your php code
    (75)
    We know that php is a server side scripting language. So we will need a server with the php parser
    to parse/test our code. How are you doing that. Do you upload it to a server for testing or did you
    instal php and the server (apache) on your computer (localhost)....

    1. Looking for email, form, code

Searching Video's for email, form, code
advertisement



Email Form Code



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE