Sending Internet Mail : mail « Utility Function « PHP






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

1.Add both name and address values into the email address
2.mail() function mails information to a given recipient.
3.mail-javascript.php
4.Using mail() to redirect user information
5.Encrypting and Sending Secure Emails Using S/MIME
6.send-email-multiple-recipients-2.php
7.send-email-with-headers.php
8.send-mail-multiple-recipients.php
9.send-plaintext-email.php
10.Sending user-requested information
11.Sends a HTML mail from a given email address:
12.Sending Mail
13.Sending a message with mail()