 |
Results from the most recent live auction are here.
16 members in the live chat room. Join Chat!
| | System Maintenance: NamePros will be offline for 20 minutes at the top of the hour (4AM EST)
03-02-2004, 11:04 PM
|
· #1 | | New Member | 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.
__________________
Mirndtsoft PHP Scripts | Featuring Automation for Paypal - Digital Goods, Ebay, Memberships, & Web Hosting www.mirndtsoft.com |
| |
03-03-2004, 01:33 AM
|
· #2 | | Permanent Resident Name: Anthony Location: NYC Join Date: Dec 2003
Posts: 9,202
NP$: 26.71 ( Donate)
| Just wondering where you got this script from? |
| |
03-03-2004, 01:34 AM
|
· #3 | | New Member |
__________________
Mirndtsoft PHP Scripts | Featuring Automation for Paypal - Digital Goods, Ebay, Memberships, & Web Hosting www.mirndtsoft.com |
| |
03-14-2004, 11:11 PM
|
· #4 | | Permanent Resident Name: Anthony Location: NYC Join Date: Dec 2003
Posts: 9,202
NP$: 26.71 ( Donate)
| Just because I like to know who wrote it, that's all.  |
| |
03-14-2004, 11:31 PM
|
· #5 | | NamePros Member | 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.
|
| |
04-19-2004, 02:13 PM
|
· #6 | | HostVilla.net Name: Juan Location: Connecticut Join Date: Apr 2004 | You should add an IP sniffer to that for security reasons. |
| |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |