PHP Code:
$to = $contactNameTwo." <".$emailTwo."> \r\n";
$headers = "From: ".$contactNameOne." <".$emailOne.">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "Reply-To: ".$contactNameOne." <".$emailOne.">\n";
$headers .= "X-Priority: 1\n";
$headers .= "X-MSMail-Priority: High\n";
$headers .= "X-Mailer: php\n";
mail( $to, $subject, $information, $headers);
Where $contactNameTwo = "Receiver's Name"
$emailTwo = "Receiver's Email Addr"
$contactNameOne = "Senders Name"
$emailOne = "Senders Email Addr"
Hope it helps anyone else looking for a script that works.
Duniyadnd