I use wp_mail to send notifications out of my WordPress theme. How can i add a reply-to address to the follwing wp_mail script:
$recipient = "recipient@example.com";
$headers = array('Content-Type: text/html; charset=UTF-8','From: MyWebsite <'mywebsite@example.com'>');
$message = 'Here is the sent message';
wp_mail( $recipient, 'Here comes the Subject', $message, $headers );