Qué código pongo para obtener las respuestas de unos campos de verificación PHP?

Hola como están?

Alguien podrían ayudarme necesito a un formulario en código php modificarlo para que cuando me respondan este formulario yo obtenga todos los campos contestados, pero no se como hacer o meterle el código para que la respuesta me llegue a mi correo.

Si se dan cuenta ya tiene algunos campos habilitados pero no todos, sobre todo me interesan los campos de verificación, que no se como hacer para que aparezcan en mi respuesta

miren este es código:

//If there is no error, send the email
if(!isset($hasError)) {
$msg .= '------------' . __('User Info', THEME_TEXT_DOMAIN) . '------------ \r\n'; //Title
$msg .= __('User IP:', THEME_TEXT_DOMAIN) . ' ' . $_SERVER["REMOTE_ADDR"]."\r\n"; //Sender's IP
$msg .= __('Browser Info:', THEME_TEXT_DOMAIN) . ' ' .$_SERVER["HTTP_USER_AGENT"]."\r\n"; //User agent
$msg .= __('User Come From:', THEME_TEXT_DOMAIN) . ' ' . $_SERVER["HTTP_REFERER"]; //Referrer

$emailTo = '[correo eliminado]';
$subject = __('Contact Form Submission From', THEME_TEXT_DOMAIN) . ' ' . $name;
$body = __('Name', THEME_TEXT_DOMAIN) . ': ' . $name . '<br />' . __('Email', THEME_TEXT_DOMAIN) . ': ' . $email . ' <br />' .
__('telefono', THEME_TEXT_DOMAIN) . ': ' . $telefono . '<br />' . __('Message', THEME_TEXT_DOMAIN) . ': <br />' . $message . ' \n\n $msg';
$headers = 'From: '.get_bloginfo('name').' <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

if(mail($emailTo, $subject, $body, $headers)) $emailSent = true;
}

}

?>

<?php if ($emailSent) : ?>

<div class="message-box ok-message-box clearfix">
<div class="message-icon-box">
<i class="icon-ok"></i>
</div>
<div class="message-container">
<p><?php _e('Tu mensaje a sido enviado satisfactoriamente ¡Gracias!', THEME_TEXT_DOMAIN) ?></p>
</div>
</div>

<?php endif; ?>

<div class="row">
<form method="post" target="">
<div class="span3">
<label for="name"><?php _e('Tu nombre', THEME_TEXT_DOMAIN) ?>*</label>
<i style="color: red"><?php echo (isset($nameError) ? $nameError : ''); $nameError = ''; ?></i>
<input type="text" name="contactName" id="name" class="stylish-text-input span3" value="" />

<label for="email"><?php _e('Tu correo', THEME_TEXT_DOMAIN) ?>*</label>
<i style="color: red"><?php echo (isset($emailError) ? $emailError : ''); $emailError = ''; ?></i>
<input type="text" name="email" id="email" class="stylish-text-input span3" value="" />

<label for="telefono"><?php _e('Tu teléfono', THEME_TEXT_DOMAIN) ?></label>
<input type="text" name="telefono" id="telefono" class="stylish-text-input span3" value="" />

<label for="asunto"><?php _e('Asunto', THEME_TEXT_DOMAIN) ?></label>
<i style="color: red"><?php echo (isset($asuntoError) ? $asuntoError : ''); $asuntoError = ''; ?></i>
<input type="text" name="asunto" id="asunto" class="stylish-text-input span3" value="" />


<label for="teinteresa"><?php _e('Te interesa ser', THEME_TEXT_DOMAIN) ?></label>
<i style="color: red"><?php echo (isset($teinteresaError) ? $teinteresaError : ''); $teinteresaError = ''; ?></i>

<table width="95%" border="0" align="center" cellpadding="5" cellspacing="2" bgcolor="#E9C49E">
<tr>
<td width="30%" valign="top"> <input type="checkbox" name="teinteresa" value="redactor"> Redactor </td>
<td> <input type="checkbox" name="teinteresa" value="editor"> Editor de vídeo digital </td>
<td width="30%" valign="top"> <input type="checkbox" name="teinteresa" value="escritor"> Escritor </td>
</tr>
<tr>
<td> <input type="checkbox" name="teinteresa" value="fotografo"> Fotógrafo </td>
<td width="40%" valign="top"> <input type="checkbox" name="teinteresa" value="especialista"> Especialista en diseño digital </td>
<td><input type="checkbox" name="teinteresa" value="traductor"> Traductor</td>
</tr>
<tr>
<td width="40%" valign="top"> <input type="checkbox" name="teinteresa" value="camarografo"> Camarógrafo </td>
<td> <input type="checkbox" name="teinteresa" value="productor"> Productor de vídeo digital </td>
<td width="30%" valign="top"><input type="checkbox" name="teinteresa" value="guionista"> Guionista </tr>
<td </td>

</table>