WordPress Mail Function Generator is a tool that simplifies sending emails on your WordPress site.
// Custom WP Mail Function
$to = array();
$subject = '';
$headers[] = 'Content-Type: text/plain; charset=UTF-8';
$headers[] = 'From: <>';
$message = ''
wp_mail($to, $subject, $message);