Que tal T4ke0veR, creo que ya te han indicado parte del problema prueba tu código así:
   Código PHP:
    <?php include ('conect.php');
 
$sql = "SELECT email, COUNT(*) AS total, SUM(monto) AS suma FROM factura GROUP BY email";
$sql_exec = mysql_query($sql) or die("Error en query $sql:".mysql_error() );
while($row = mysql_fetch_assoc($sql_exec))
?>
<table width="955" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><?php echo $row['suma']; ?></td>
  </tr>
</table>   
  
Saludos.