Sending mail is one of the things that initially blew my mind on the simplicity.
When sendmail or a SMTP server is setup on your server, sending mail is a one liner in PHP.
$to = "info@phpin24.co.za"; $subject = "Test Email"; $msg = "Hello email world";
mail($to,$subject,$msg);
See the header properties at http://www.php.net/manual/en/ref.mail.php to add more functionality to sending emails for example changing the from address.
By PHPin24 @ 2008-03-10 00:30:34
|