<?php // This is the sender of the email $sender = 'email'; // This is the recipient of the email $recip = 'email'; // Subject to be sent in the email $subject = 'Simple Form Email'; // These are the email headers $headers = 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n"; $headers .= 'Message-ID: <". time() .rand(1,1000). ">' . "\n"; $headers .= 'From: ' . $sender . "\n"; $subject = "$subject"; ?>