How do I customise the new user welcome email

How can I customise the the new user welcome email ?

I tried ‘http://www.sean-barton.co.uk/wordpress-welcome-email-editor/’ however it conflicts with some of the other plugins I need to use, Cimy Extra Fields.

There is one other plugin that is to old for wordpress 3.0.1.

Will

1
1

SB Welcome Email Editor works by replacing wp_new_user_notification() with an own version. The original version can be found in wp-includes/pluggable.php, the plugin uses an elaborate replacement with all kinds of options. You can do this to: create a new plugin (just a PHP file in wp-content/plugins/), and define wp_new_user_notification($user_id, $plaintext_pass="") there. This will then be used instead of the regular WordPress version.

Leave a Comment