Answers:
您可以将_user_mail_notify()
函数与用户对象一起使用,以调用密码重置电子邮件:
// Load a user (admin in this case).
$account = user_load(1);
// Invoke the email. It will be queued along with other system mail to be sent during cron
_user_mail_notify('password_reset', $account);
该特定电子邮件默认包含一个24小时有效期的一次性登录URL。