In the sender name box , the emails that the user gets when they register says wordpress. I want all messages to say my company name.
when a user resets their password, it says wordpress in the sender names area...
how can I fix this
use wp_mail_from_name hook.
placed a code in functions.php in your theme folder.
eg:
add_filter( 'wp_mail_from_name', function( $name ) {
return 'company name';
});