[advanced search]
Results from the most recent live auction are here.
23 members in the live chat room. Join Chat!
Register Rules & FAQ NP$ Store Active Threads Mark Forums Read
Go Back   NamePros.Com > Design and Development > Programming > CODE
User Name
Password

Old 03-02-2004, 11:04 PM   · #1
listenmirndt
New Member
 
Trader Rating: (0)
Join Date: Mar 2004
Posts: 18
NP$: 29.00 (Donate)
listenmirndt is an unknown quantity at this point
Easy mail form script

First the form :

mailform.htm
Code:
<html> <head> <title>Send Mail</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <form name="form1" method="post" action="mail.php"> <div align="center"> <table cellspacing="1" cellpadding="3" border="6" bordercolor="#F9F9F9" bgcolor="#CCCCCC"> <tr bgcolor="#F9F9F9"> <td> <div align="center"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="1">Your Email </font></div> </td> <td> <div align="center"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="1">Message</font></div> </td> </tr> <tr> <td bgcolor="#FFFFFF"> <div align="center"><font color="#000000"><b> <input type="text" name="from" size="20" value=""> </b></font></div> </td> <td bgcolor="#FFFFFF" rowspan="3"><font color="#000000"><b> <textarea name="message" cols="20" rows="5"></textarea> </b></font></td> </tr> <tr> <td bgcolor="#F9F9F9"> <div align="center"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="1">Subject</font></div> </td> </tr> <tr> <td bgcolor="#FFFFFF"> <div align="center"><font color="#000000"><b> <input type="text" name="subject" size="20" value=""> </b></font></div> </td> </tr> </table> <table cellspacing="1" cellpadding="3" border="6" bordercolor="#F9F9F9" bgcolor="#CCCCCC"> <tr bgcolor="#F9F9F9"> <td> <div align="center"><font color="#000000"> <input type="submit" name="Send" value="Send"> </font></div> </td> </tr> </table> <input type="hidden" name="to" value="YOU@YOURDOMAIN.COM"> </div> </form> </body> </html>


Change YOU@YOURDOMAIN.COM to your email address

then,

mail.php
PHP Code:
<?php

$from
= $_POST['from'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$to = $_POST['to'];

$to="$to";
$headers.= "MIME-Version: 1.0\r\n";
$headers.= "Content-type: text/html; ";
$headers.= "charset=iso-8859-1\r\n";

$headers.= "From: $from";

$subject = "$subject";
$body = "$message";

$send_check=mail($to,$subject,$body,$headers);
if (
$send_check!=true) {
die();
}

?>

<html>
<head>
<title>Message Sent</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<table cellspacing="1" cellpadding="3" border="6" bordercolor="#F9F9F9" bgcolor="#CCCCCC" align="center">
  <tr bgcolor="#F9F9F9">
    <td>
      <div align="center"><font color="#000000"><b><font color="#000000"><b><font color="#000000"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="1">YOUR
        MESSAGE HAVE BEEN SENT<br>
        <br>
        </font></b></font></b></font></b><font color="#000000"><font color="#000000"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Will
        will respond as soon as we can. Thank-You</font></font></font></font></div>
    </td>
  </tr>
</table>
</body>
</html>


upload both files and your done.


Please register or log-in into NamePros to hide ads
__________________
Mirndtsoft PHP Scripts | Featuring Automation for Paypal - Digital Goods, Ebay, Memberships, & Web Hostingwww.mirndtsoft.com
listenmirndt is offline   Reply With Quote
Old 03-03-2004, 01:33 AM   · #2
Anthony
Permanent Resident
 
Anthony's Avatar
 
Name: Anthony
Location: NYC
Trader Rating: (142)
Join Date: Dec 2003
Posts: 9,203
NP$: 26.71 (Donate)
Anthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant future
Member of the Month
October 2004
Just wondering where you got this script from?
Anthony is offline   Reply With Quote
Old 03-03-2004, 01:34 AM   · #3
listenmirndt
New Member
 
Trader Rating: (0)
Join Date: Mar 2004
Posts: 18
NP$: 29.00 (Donate)
listenmirndt is an unknown quantity at this point
From my site, www.mirndtsoft.fw-e.com . why?
__________________
Mirndtsoft PHP Scripts | Featuring Automation for Paypal - Digital Goods, Ebay, Memberships, & Web Hostingwww.mirndtsoft.com
listenmirndt is offline   Reply With Quote
Old 03-14-2004, 11:11 PM   · #4
Anthony
Permanent Resident
 
Anthony's Avatar
 
Name: Anthony
Location: NYC
Trader Rating: (142)
Join Date: Dec 2003
Posts: 9,203
NP$: 26.71 (Donate)
Anthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant future
Member of the Month
October 2004
Just because I like to know who wrote it, that's all.
Anthony is offline   Reply With Quote
Old 03-14-2004, 11:31 PM   · #5
Pablo
NamePros Member
 
Trader Rating: (0)
Join Date: Nov 2003
Posts: 44
NP$: 80.00 (Donate)
Pablo is an unknown quantity at this point
Just so others know It can be sent with HTML. so to add html to the email you just simply add....

$body = "
<html><body>
<table width=60% border=1 cellpadding=0 cellspacing=0>
<tr>
<td> $message </td>
</tr>
</table>
</html></body>";
__________________
Click Link for Java IRC

PHP-Live IRC: pgardner.net:6667, Channel: #php.
Pablo is offline   Reply With Quote
Old 04-19-2004, 02:13 PM   · #6
BoRiCuA
HostVilla.net
 
BoRiCuA's Avatar
 
Name: Juan
Location: Connecticut
Trader Rating: (34)
Join Date: Apr 2004
Posts: 614
NP$: 0.00 (Donate)
BoRiCuA is just really niceBoRiCuA is just really niceBoRiCuA is just really niceBoRiCuA is just really nice
You should add an IP sniffer to that for security reasons.
BoRiCuA is offline   Reply With Quote
Closed Thread

NamePros is a revenue sharing forum.

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


Site Sponsors
Grow your forum! EscrowDNS Grow your forum!
Advertise your business at NamePros
All times are GMT -7. The time now is 10:37 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0