php - How can I create a custom email when a user registers to my wordpress site? -
in sender name box , emails user gets when register says wordpress. want messages company name.
when user resets password, says wordpress in sender names area...
how can fix this
use wp_mail_from_name
hook.
placed code in functions.php in theme folder.
eg:
add_filter( 'wp_mail_from_name', function( $name ) { return 'company name'; });
Comments
Post a Comment