How to set custom from email address in wp

Please use this below code for sending emails in wordpress, which will change the from name.

$recipient_email = "[email protected]";
$subject ="Submission";
$message = "I have done a submission"; 
$headers="Content-type: text/html;charset=utf-8" . "\r\n"; 
$headers .= 'From: Mastic Technology Rebate <[email protected]>' . "\r\n";
wp_mail($recipient_email, $subject, $message, $headers);