Я пытаюсь отправить электронную почту пользователям вручную с помощью хука hook_mail_alter. Следующее - моя функция во всей ее полноте:
function custom_module_mail_alter(&$message) {
$email = '[user:name],
A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:
[user:one-time-login-url]
This link can only be used once to log in and will lead you to a page where you can set your password.
After setting your password, you will be able to log in at [site:login-url] in the future using:
username: [user:name]
password: Your password
-- [site:name] team';
$account = $message['params']['account'];
$uid = $account->uid;
$_user = user_load($uid);
dpm(token_replace($email, array('user'=>$_user)));
}
Вывод выглядит так:
Peter,
A site administrator at Website has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:
[user:one-time-login-url]
This link can only be used once to log in and will lead you to a page where you can set your password.
After setting your password, you will be able to log in at http://localhost/website/user in the future using:
username: Peter
password: Your password
-- Website team
Как видите, такие вещи, как [user: name], [site: name] и [site: login-url] обрабатываются правильно. Единственный токен, который не обработан - это [user: one-time-login-url]. Есть идеи, почему это происходит?
РЕДАКТИРОВАТЬ: просто для справки, токен действительно обрабатывается в сообщениях приветствия, которые система автоматически отправляет, так что модуль токена активен и работает ... Кажется, он не обрабатывается, когда я вручную вызываю token_replace ().