Code:
<?php
//start reusable script
$emails = "TO@Email";
$subject = "Subject";
$body = "Hi $user";
$from = "From: From@email\n";
$subject = addslashes($subject);
$body = addslashes($body);
mail($emails, $subject, $body, $from);
?>
Basically what I want... is when I access this page for there to be a text box for $emails and $user so I can edit who the Email is going to, and the username without having to reedit the php file so...
*Accessed php page in browser*
Send To: (BOX)
Username: (BOX)
Submit
*when submit is hit, it sends the email to the user designated in the Send To Box*
and let it replace the variable.. thanks
-Bone