在 JIRA 问题跟踪器中,在更改时向自定义用户字段发送电子邮件吗?
我们在 JIRA 中有自定义用户字段(即“业务分析师”、“开发人员”等),并且我们希望在这些用户被分配到其中一个字段时能够向这些用户发送电子邮件。我查看了 JIRA wiki,但找不到方法来做到这一点。
我知道这可以通过“问题分配”事件来实现,但在这种情况下,JIRA 不会被分配,因为我们使用的是自定义字段。
这有可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个插件:通过电子邮件发送此问题应该是您正在寻找什么(向自定义字段发送电子邮件)。
This plugin: Email This Issue should be what you are looking for (sending email to custom fields).
您应该查看 JIRA Scripting Suite 插件 --- 您可以轻松执行类似的操作,事实上,他们提供了一个示例脚本,向您展示如何发送自定义电子邮件(https://studio.plugins.atlassian.com/wiki/display/JSS/Scripting+Samples)。
但您确实必须抓住两个用例——作为工作流程转换的后期功能和作为普通编辑。这个插件可以让你做到这两点。我通常只是担心在工作流程中第一次需要这些字段时处理这些事情,并在后期功能中处理它。
这个插件彻底改变了 JIRA 对我来说的力量。我可以快速动态更改脚本,而无需重新编译或重新启动 JIRA。你必须检查一下。
You should look at the JIRA Scripting Suite plugin --- you can easily do something like that, and in fact, they provide a sample script that shows you how to send a custom email (https://studio.plugins.atlassian.com/wiki/display/JSS/Scripting+Samples).
But you do have to catch two use cases --- as a post-function to a workflow transition and as a plain edit. This plugin allows you to do both of those. I typically just worry about handling those things at the point in the workflow in which those fields are required for the first time, and handle it in a post-function.
This plugin completely changed the power of JIRA for me. I can quickly change scripts on the fly without recompiling or restarting JIRA. You must check it out.