in the email massage, you need to alter the code that outputs the form element:
<?php echo((isset($_POST["Services"]))?$_POST["Services"]:"") ?>
to use the implode function to convert the array to a comma seperated listed:
<?php echo((isset($_POST["Services"]))?implode(", ", $_POST["Services"]):"") ?>