Is it possible to change the 'A validation e-mail has been sent to your e-mail address. In order to gain full access to the site, you will need to follow the instructions in that message.' message that appears when a new users creates an account?

Comments

drupalese4711’s picture

I have the same problem and cannot imagine, that it is so difficult to change a text!!
In http://drupal.org/node/774382#comment-4780358 there is offered a solution. OK, it might work, but is there no drupal-way to solve this problem?

Hopefully someone can help...

ditcheva’s picture

Go to admin/config/people/accounts and look at the 'E-mails' section at the very bottom!

Customize to your heart's content! :-)

Boriana

tmsimont’s picture

The settings you refer to above only allow you to customize the email.

After reviewing this code:
http://api.drupal.org/api/drupal/modules%21user%21user.module/function/u...

It's clear that there is no way you can customize the message with Drupal... The messages passed to drupal_set_message() after registration are hard-coded, so you are stuck...

Luckily, these message are passed through the t() function, so you can use the String Overrides module, but that kind of sucks that it's such a hassle...