Hola por favor revise su wp_mail
valor de retorno
$message="<table>
<tr>
<td>Name</td><td>".$name.'</td></tr>
<tr><td>Lead Person Name</td><td>'.$pname.'</td></tr>
<tr><td>Tour Date</td><td>'.$date.'</td></tr>
<tr><td>No. Of Pax</td><td>'.$person.'</td>
</tr>
</table>';
$to = 'email@gmail.com';
$subject="HTML Formate mail";
$body = $message;
$headers = array('Content-Type: text/html; charset=UTF-8');
$send_status = wp_mail( $to, $subject, $body, $headers );
if($send_status)
echo 'Mail Send Successfully';
else
echo 'Something went wrong';
Espero que te ayude.
.