使用工作流程更改之前和之后发送包含列值的电子邮件

发布于 2024-12-13 14:33:42 字数 188 浏览 0 评论 0原文

当 MOSS 2007 中列表中的列随着工作流程发生更改时,我尝试向指定用户发送电子邮件。我的列表中有一个评论栏,每当任何用户更新该评论时,都会向创建者和特定组发送一封邮件,说明已更改的内容。

我看到一个回复​​,其中指出创建 2 个列表并使它们保持同步并比较两个列表中的评论值。但这并不是一个完美的解决方案。

请帮忙。提前致谢。

I am trying to send an email to specified users when a column in a list changes in MOSS 2007 with workflow. I have a comments column in a list and whenever any user updates that comment, a mail should go to the creator and specific group stating what has changed.

I saw a response which states to create 2 lists and keep them in sync and compare values of comments from the two lists. But that is not a perfect solution.

Please help. Thanks in advance.

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

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

发布评论

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

评论(1

方圜几里 2024-12-20 14:33:42

替代解决方案是这样的:

  • 假设您有已命名的单元格
       *first* *second* *third* *fourth* 
  • ,然后您(在同一列表中)创建具有相同结构的单元格,仅将它们命名为这样
       *first2* *second2* *third2* *fourth2*
  • 然后您创建发送用户单元格值的工作流程,其中单元格和单元格2之间的内容不相同。例如
       check if *first* and *first2* are same, if not, add to message value of *first*.
       ... repeat for all four of them
  • ,然后将值从单元格复制到单元格2(这将为您提供历史记录)
       from *first* to *first2*
       from *second* to *second2*
              .
              .

希望它有帮助。干杯

Alternate solution would be this:

  • let say you have cells named
       *first* *second* *third* *fourth* 
  • then you make (in same list) cells with same structure only name them like this
       *first2* *second2* *third2* *fourth2*
  • Then you create the workflow that send user cell values, where content between cell and cell2 is not same. For instance
       check if *first* and *first2* are same, if not, add to message value of *first*.
       ... repeat for all four of them
  • then copy the value from cell to cell2 (this will give you history)
       from *first* to *first2*
       from *second* to *second2*
              .
              .

Hope it helps. Cheers

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