Drupal:当我取消阻止用户(状态变为活动)时,如何自动向用户发送电子邮件?

发布于 2024-10-17 23:02:17 字数 112 浏览 2 评论 0原文

当我取消阻止某个用户(状态变为活动状态)时,如何自动向该用户发送电子邮件?

我已经搜索了适当的规则,但找不到正确的条件(没有带有用户“状态”或“阻止/取消阻止”属性的令牌。

谢谢

How can I automatically send an email to an user when I unblock him (status becomes active) ?

I've searched the appropriate rule, but I couldn't find the correct condition (there is not a token with the user "status" or "block / unblock" property.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白芷 2024-10-24 23:02:17

添加事件:用户帐户详细信息已更新
添加条件“执行自定义 PHP 代码”,在其中写入代码:

return !$account_unchanged->status && $account->status;

添加有关发送电子邮件的操作。

Add event: User account details have been updated
Add condition "Execute custom PHP code", write there code:

return !$account_unchanged->status && $account->status;

Add your action about sending email.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文