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

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

[C++][SFML 2.2] Strange Performance Issues - Moving Mouse Lowers CPU Usage -

ios - Possible to get UIButton sizeThatFits to work? -