Sending Internet Mail
<?php
$to = "s@somedomain.com";
$from = "j@anotherdomain.com";
$cc = $from;
$subject = "Sending emails from PHP";
$body = <<< BODY
Hi Sam,
This email is generated from a PHP script.
- Joe
BODY;
mail($to, $subject, $body, "From: $from\r\nCc: $cc");
?>
Related examples in the same category