Help with sending values!

Im trying to set up a form where a client can choose what they would like to order, once they have selected what they want to order using check boxes
they hit submit (which sends to a php page) which adds all the prices up and gives them a total and a list of the products they have chosen.

After which there is a button down the bottom that says “Confirm Order”
So they can check over their order and make sure the price is ok and all the products are listed

So… the one thing i cant get my head around (complete php noob) is getting it to send the price and list of products to an email i designate!

i tryed getting it to post to another php and send it from there, but i couldn’t get that to work, so i have been trying to do it inside the 1st php.

Codes are as follows:

form.html:

<form action="process.php" method="post">
<label><b>Business Cards</b></label>
<p>100 Business cards <input name="100bc" type="checkbox" value="100bc" /></p> 
<p>250 Business cards <input name="250bc" type="checkbox" value="250bc" /></p> <p>

<label><b>Letter Heads</b></label>
<p>100 Letterheads <input name="100lh" type="checkbox" value="100lh"/></p>
<p>250 Letterheads <input name="250lh" type="checkbox" value="250lh"/></p><p>

<label><b>DL Flyers</b></label>
<p>250 DL Flyers <input name="250dl" type="checkbox" value="250dl"/></p>
<p>500 DL Flters <input name="500dl" type="checkbox" value="500dl"/></p>

<input type="submit" value="submit" /> 
</form>

process.php:

<?php 

$bc1_info = array (150 , '100 Business Cards'); 
$bc2_info = array (210, '250 Business Cards');

$lh1_info = array (175, '100 Letterheads');
$lh2_info = array (230, '250 Letterheads');

$dl1_info = array (240, '250 DL Flyers');
$dl2_info = array (330, '500 DL Flyers');


if (isset($_POST['100bc'])) { 
	$bc1_price = $bc1_info[0]; 
	$bc1_name = $bc1_info[1]; 
}

if (isset($_POST['250bc'])) { 
	$bc2_price = $bc2_info[0]; 
	$bc2_name = $bc2_info[1]; 
}

if (isset($_POST['100lh'])) {
	$lh1_price = $lh1_info[0];
	$lh1_name = $lh1_info[1];
}

if (isset($_POST['250lh'])){
	$lh2_price = $lh2_info[0];
	$lh2_name = $lh2_info[1];
}

if (isset($_POST['250dl'])){
	$dl1_price = $dl1_info[0];
	$dl1_name = $dl1_info[1];
}

if (isset($_POST['500dl'])){
	$dl2_price = $dl2_info[0];
	$dl2_name = $dl2_info[1];
}

$total = ($bc1_price + $bc2_price + $lh1_price + $lh2_price + $dl1_price + $dl2_price); 
echo "Please Confirm your order: <br> ", $bc1_name," ", $bc2_name, "  ", $lh1_name, "  ", $lh2_name, "  ", $dl1_name, "  ", $dl2_name, "<p> " ; 
echo "Total price is $$total"; 
?>
<form  method="post" id="msgform" action="">
<input name="send" type="submit" class="button" id="send" value="Confirm Order"/></form>

<?php

if(isset($_POST['send']))
{

	
	$to      = "name@company.com"; 

    $subject = 'order';

	$msg    = "$total";
					
	}
	
	if($total == '') {print( erroorrrrrrr);}
	else{
	$send = mail($to, $subject, $msg); }
	
?>


Any help would be MUCH appreciated