u would need a php script using mail(); function. If you want I could do one for 25 x10 Points, just put on your site, change post data and go.
btw: Looking at source code, its not even paraphasing PHP
PHP Code:
<?php
function agent($browser) {
$useragent = $_SERVER['HTTP_USER_AGENT'];
return strstr($useragent, $browser);
}
if(agent('Firefox') != FALSE)
{
$img = @imagecreatefromjpeg("http://www.greenear.x10hosting.com/Main/dropshadow.png");
ImageDestroy($img);
}
else
{
echo "Sorry, it appears you do not have Firefox, which means you cannot see the image.";
}
?>