You are here

function user_registrationpassword_mailkeys in User registration password 7

Same name and namespace in other branches
  1. 6 user_registrationpassword.module \user_registrationpassword_mailkeys()

Implements hook_mailkeys().

Returns an array with a simple string to identify the mailkey.

See also

user_registrationpassword_mail()

_user_registrationpassword_mail_text()

user_registrationpassword_mail_tokens()

user_registrationpassword_mail_edit_text()

user_registrationpassword_mail_edit_token_types()

File

./user_registrationpassword.module, line 434
Enables password creation on registration form.

Code

function user_registrationpassword_mailkeys() {
  return array(
    'register' => t('Welcome message when user self-registers and sets password during registration'),
  );
}