Hi,
since this plugin only uses the regular WordPress function to send emails and does not regulate how those emails are sent, you can change that by using plugins that are used to configure the emails.
I’ve used Easy WP SMTP. You can also try https://ww.wp.xz.cn/plugins/wp-mail-smtp/.
Thanks for the response. I ended up adding a little bit of code to the functions.php and works perfect
`// Function to change email address
function wpb_sender_email( $original_email_address ) {
return ‘[email protected]’;
}
// Function to change sender name
function wpb_sender_name( $original_email_from ) {
return ‘Tim Smith’;
}
// Hooking up our functions to WordPress filters
add_filter( ‘wp_mail_from’, ‘wpb_sender_email’ );
add_filter( ‘wp_mail_from_name’, ‘wpb_sender_name’ );