Drupal 6 でパスワードのリセット フォームを作成しました。送信時に、Drupal メッセージを表示する同じページにリダイレクトする必要があります。
私は次のように書いています。
global $language;
$account = $form_state['values']['account'];
_user_mail_notify('password_reset', $account, $language);
watchdog('user', 'Password reset instructions mailed to %name at %email.', array('%name' => $account->name, '%email' => $account->mail));
drupal_set_message(t('Further instructions have been sent to your e-mail address.'));
$form_state['redirect'] = 'user/password';
return;
}
私のメールコードは正常に機能していますが、私のメッセージは表示されません。