$to = 'boyic.alberto@gmail.com';
$subject = 'The subject';
$body = 'The email body content';


$m = wp_mail( $to, $subject, $body );
var_dump($m);

 returns bool(true)