In the mean time have you tried changing the header?
Snippet:
$headers .="From: ME :) <noreply@email.co.uk>\r\n";
Full Function:
# Email System
function c4email($email_to, $title, $message)
{
# Checking Vars
if (!$email_to) { c4error("You must define an email address."); }
if (!$title) { c4error("You must define an email title."); }
if (!$message) { c4error("You must define a message."); }
# Set Email Headers
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .="From: iiCUP <noreply@iigaming.co.uk>\r\n";
$messagen="
<BODY BGPROPERTIES='fixed' bgcolor='#000000'>
<FONT FACE='MS Sans Serif,Courier,System' COLOR='#FFFFFF'>
$message
</font></body>";
# Send Mail
if(mail($email_to,$title,$messagen, $headers)) {
}
}