Sending mail using PHP (to the one that puts the email in the EMAIL INPUT)
477
Solution:
Use this
$email = "youremailaddress";
$yoursubject="Something ...";
$yourmessage="Something else...";
mail($email, $yoursubject, $yourmessage);