Send an email in PHP specifying to and from email addresses, subject and content.
$to_email = "sendto@here.com";
$from_email = "from@here.com";
$email_subject = "Message from $from_site";
$email_headers = "From: $from_email
";
mail($to_email, $email_subject, $email_content, $email_headers);