How to customize ‘WordPress’ in sent email using wp_mail function?

$to = '[email protected]';
$name="jhon";
$subject="The subject";
$body = 'The email body content';
$headers = array('From: '.$name.'');

wp_mail( $to, $subject, $body, $headers );

I hope it’ll work as you want.