Subject Re: Jason's private email
Author prom_prometheus
I tried it, but no answer till now ... lol

For PHP MailForm you can use this here:
1) the Form:

<?
error_reporting(E_ERROR);
?>
<html>
<header>
<style>
textarea{
background-image:url(images/paper_03.jpg);
}
</style>
<style>
input{
background-image:url(images/paper_02.jpg);
}
</style>
</header>
<body background="images/bcksf_b.gif">
<table border="0" width="1000" id="table1" cellspacing="0"
cellpadding="0">
<tr>
<td width="24"> </td>
<td>
 </td>
<td>
 </td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td>
 </td>
<td>
 </td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td>
<p align="center">
 </td>
<td>
<img border="0" src="images/sf_email2.jpg" width="141" height="61"></td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td width="508"><b><font face="Trebuchet MS">to MYNAMEHERE
</font></b></td>
<td width="239"> </td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td colspan="2"> </td>
<td width="275"> </td>
</tr>
<?
$ipi = getenv("REMOTE_ADDR");
$httprefi = getenv ("HTTP_REFERER");
$httpagenti = getenv ("HTTP_USER_AGENT");
?>
<form method="post" action="example_esend.php">
<input type="hidden" name="ip" value="<?php echo $ipi ?>" />
<input type="hidden" name="httpref" value="<?php echo $httprefi ?>" />
<input type="hidden" name="httpagent" value="<?php echo $httpagenti ?>" />
<tr>
<td width="24"> </td>
<td colspan="2"><font face="Trebuchet MS"><font size="2">your
name</font><br>
<input type="text" name="visitor" size="103"></font></td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td colspan="2"><font face="Trebuchet MS"><font size="2">your
email</font><br>
<input type="text" name="visitormail" size="103"></font></td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td colspan="2">

<font face="Trebuchet MS">
</font><font face="Trebuchet MS">
</font>
<table border="0" width="100%" id="table2" cellspacing="0"
cellpadding="0">
<tr>
<td width="607" colspan="2">
<font face="Trebuchet MS"><font size="2">subject<br>
</font>
<input type="text" name="attn" size="103"><br>
<font size="2">mail message</font></font></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="607" colspan="2"><font face="Trebuchet MS">
<textarea rows="17" name="notes" cols="78"></textarea></font></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="607" colspan="2"> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="238"><font face="Trebuchet MS"><br>
 </font></td>
<td width="491">
<font face="Trebuchet MS">
<input type="Image" name="B1" onClick="submit" img border="0"
src="images/b_send_mail.gif" width="134" height="18">
</font></td>
<td> </td>
<td> </td>
</tr>
</table>
<p> </p>
</form>
<p> </td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td colspan="2"><font face="Trebuchet MS" size="1" color="#808080">
<img border="0" src="images/white_space.gif" width="482"
height="19">(spam
crowler secure email form)</font></td>
<td width="275"> </td>
</tr>
<tr>
<td width="24"> </td>
<td colspan="2"> </td>
<td width="275"> </td>
</tr>
</table>
<html>
</body>
</html>
<?
?>

2) the php send script:

<?
$visitor = $_POST['visitor'];
$visitormail= $_POST['visitormail'];
$notes= $_POST['notes'];
$attn= '[meine homepage]' . $_POST['attn'];
$ip= $_POST['ip'];
$httpagent= $_POST['httpagent'];
$httpref= $_POST['httpref'];
?>
<html>
<header>
</header>
<body background="images/bcksf_b.gif">
<table border="0" width="1000" id="table1" cellspacing="0"
cellpadding="0">
<tr>
<td width="26"> </td>
<td>
<p align="center">
 </td>
<td width="256"></td>
</tr>
<tr>
<td width="26"></td>
<?
$isoki = 1;
if(!$visitormail == "" && (!strstr($visitormail,"@") ||
!strstr($visitormail,".")))
{
$isoki = 0;
echo "<h2>Use Back - Enter valid e-mail<br>
(Bitte geben Sie Ihre gültige E-Mail-Adresse ein. Danke.)</h2>\n";

$badinput = "<h2>Feedback was NOT submitted</h2>\n";
echo $badinput;
}

if(empty($visitor) || empty($visitormail) || empty($notes )) {
$isoki = 0;
echo "<h2>Use Back - fill in all fields<br>
</h2>\n";
}
$todayis = date("l, F j, Y, g:i a") ;
$attn = $attn ;
$subject = $attn;
$notes = stripcslashes($notes);
$message = " $todayis [EST] \n
Attention: $attn \n
Message: $notes \n
From: $visitor ($visitormail)\n
Additional Info : IP = $ip \n
Browser Info: $httpagent \n
Referral : $httpref \n
";
$from = "From: $visitormail\r\n";
if ($isoki == 1) {
mail("myname@...", $subject, $message, $from);
}
if ($isoki == 1) {
echo '<td><b><font face="Trebuchet MS"><p align="center">Date: ';
echo $todayis;
echo '<br><img border="0" src="images/thanks.jpg" width="400"
height="323"><br><br>';
echo $visitor;
echo '<br><br> </font></b>';
}
?>
</td>
<td width="256"> </td>
</tr>
</table>
<html>
</body>
</html>
<?
?>

br
gerhard

you can test it here: http://www.promisoft.com/gkcontact.php




--- In IBObjects@yahoogroups.com, "Jason Wharton" <supportlist@...> wrote:
>
> I would like to announce a new email address for people to use to
> communicate with me privately. My regular published address is
receiving
> more spam than my system can handle. My spam filter eliminates most
of it,
> and I don't even check that as I used to, and what my spam filter
doesn't
> catch still is more than I can process.
>
> So, instead of using jwharton@... please substitute the jwharton
> with my first name jason and that will get to me more readily.
>
> At some point I would like to go to a system where correspondence
with me is
> done on the community website. I have been working on some much needed
> improvements to it.
>
> Please send any requests you have sent to me in the past that I have not
> responded to.
>
> Sorry for any inconvenience this change of address causes and my
inability
> to handle so much spam.
>
> Jason Wharton
>