mail

It can be used to send email

Example

<?php
$headers    = “MIME-Version: 1.0n”;
$headers   .= “Content-type: text/html; charset=iso-8859-1n”;
$headers   .= “From: from@phpcodez.comn”;
$headers   .= “Return-Path: info@phpcodez.comn”;
$headers   .= “Return-Receipt-To: info@phpcodez.comn”;
@mail(“info@phpcodez.com”,”Test”, “Test Mail”, $headers);
?>