phpwordpressemailpluginswordpress-login

How can I create a custom email when a user registers to my wordpress site?


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


Solution

  • 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'; 
    });