I simplified my example.
HTML
<form id="form_main" name="form_main" method="post" action="webform.php">
<input type="company" name="company">
<input type="text" name="name">
<label><input type="checkbox" name="system[]" value="system1" />system1</label>
<label><input type="checkbox" name="system[]" value="system2" />system2</label>
<label><input type="checkbox" name="system[]" value="system3" />system3</label>
</p>
<p class="cb_submit">
<input type="submit" name="submit" id="submit" value="Submit" />
</p>
</form>
PHP
<?php
$company = $_POST['company'];
$name = $_POST['name'];
$formcontent = "System: $system";
$recipient = "[email protected]";
$mailheader = "From: [email protected]";
mail($recipient, $subject, $formcontent, $mailheader);
?>