Hi AndieDK,
I’m sorry for the late reply.
I’m using the wp_mail function to send these email to the users. I will include this piece to be editable in the WordPress backend, but if you don’t have time, you can modify the core file.
Search for this on line 63:
wp_mail( $user_email, $options_subject, $options_message);
And change it to something like this:
$headers = 'From: My Name <[email protected]>' . "\r\n";
wp_mail( $user_email, $options_subject, $options_message, $headers);
Let me know, how is it going. Thanks!