$toemail="firstemail@blah.com";
$title="The Title";
$message="The message of the stuff";
$headers="From: ".$email."\n"."Reply-To: ".$email."\n"."BCC:".$emaillist."\n";
$message=trim($message);
$headers=trim($headers);
$title=trim($title);
mail($toemail,$title,$message,$headers);
That should work, I didn't know how or what the emails were for and how they should be sent so i just gave you information above to solve your problem. So here is some more, if it works out for you great 🙂 if not read up on the Header stuff for the sendmail and the mail() call.