Forum Moderators: open
<html><head>
<script language=javascript>
function mail()
{
var email_address=document.form.eml.value;
document.location="http://www.yoursite.com/send_mail.php?address=" + email_address;
}
</script></head>
<body>
<form name=form>
Type Friend's E-Mail Address Here: <input type=text name=eml> <input type=button value="Go!" onClick="mail()"></form></body></html>
Make sure you change the values of "http://www.yoursite.com/send_mail.php" to whatever.
The code in send_mail.php would be:
<?php
$email=$_GET['address'];
$subject="subject";
$text="body text";
send($email,$subject,$text);
?>
Be sure to change the subject and body text variables ($subject & $text, respectively).