Well, you would need to have the layout of the email and that kinda stuff set up. But to send an email you would probably use the mail() function.
http://us.php.net/mail
I also think that this should work if you put it in to your code now:
PHP Code:
<?php
$usersEmail = $_POST['email']; //method for getting the users email
$yourEmail = "yourRealEmail@yourRealEmailsDomain.com";
$to = $usersEmail;
$subject = 'Type subject here'; //subject
$message = "Hello"; //message
$headers = "From: $yourEmail" . "\r\n";
$headers .= "Bcc: $yourEmail" . "\r\n" .
mail($to, $subject, $message, $headers);
?>
But you'd have to change a few things to make it right. I hope this helps you.
Bookmarks