views:

359

answers:

1

I need to change the default email text that will be sent while creating a new user in wordpress.

Where can i find the option to change the default text:

Welcome [username] to [blogname]
Please find below your login details:
Username: [username]
Password: [password]
[blog url]

A: 

Here are a couple of plugins that make this easy:

  1. New User Email Setup
  2. SB Welcome Email Editor
Druid
Also I found that we can change the email message in the function wp_new_user_notification under wp-includes/pluggable.php. which avoids the use of the plugin
Prasad
But that would also mean a WordPress update will break your code. It's better to use a plugin rather than edit WordPress core files.
Druid