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
SB Welcome Email Editor works by replacing
wp_new_user_notification()
with an own version. The original version can be found inwp-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 inwp-content/plugins/
), and definewp_new_user_notification($user_id, $plaintext_pass = '')
there. This will then be used instead of the regular WordPress version.