如何跟踪 Rails 中的邮件收件人?

发布于 2024-10-25 13:57:32 字数 223 浏览 4 评论 0原文

我会尝试简要介绍一下我感到困惑的部分,

在我的 Rails 应用程序中, 当我创建一个特定的作业时,很少有人被纳入其中。

接下来,该任务将提交给更高级别并由主管批准,同时电子邮件会发送给相应的相关人员或包含的人员。

现在,如果我作为主管再次因某种原因拒绝并批准该任务,那么这些人不应该收到第一次批准该任务时收到的邮件。

所以我想知道如何检查这个?

谢谢

I would try to put a brief idea of the part i'm confused with,

In my rails application,
when i create a particular assignment ,few persons are included as a part.

Next the assignment goes to higher level and is approved by the chief,simultaneously email is sent to respective persons involved or included.

Now if i as a chief again disapprove and approve the assignment for some reason,then the persons should not get mails as already they received when first time the assignment was approved.

So i would like to know how to put a check on this?

Thanx

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

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

发布评论

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

评论(1

音盲 2024-11-01 13:57:32

这意味着您必须在第一次批准后发送邮件,而不是在那之后。
如果分配表中有任何标志属性,则默认将其设置为空。
在您的回调方法中,只需检查标志属性是否为空,然后发送邮件,否则不发送邮件。
希望它能起作用。

It means you have to send mail after first approval not after that.
If you have any flag attribute in the assignments table then just set it null by default.
And in you callback method just check if flag attribute was null then send mail otherwise not.
Hope it will work.

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