Hi, thanks for this…
Can i substitute what you have there with mine, e.g.
—————
function beetcore_change_from_email( $original ) {
return ‘[email protected]’;
}
add_filter( ‘wp_mail_from’, ‘beetcore_change_from_email’ );
function beetcore_change_from_name( $original ) {
return ‘Support Beetcore’;
}
add_filter( ‘wp_mail_from_name’, ‘beetcore_change_from_name’ );
——————
Will above work?