且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在JIRA问题跟踪器中,将更改后的电子邮件发送到自定义用户字段?

更新时间:2023-02-12 10:03:17

您应该看一下JIRA Scripting Suite插件---您可以轻松地执行类似的操作,实际上,它们提供了一个示例脚本,向您展示了如何发送自定义电子邮件( https://studio.plugins.atlassian.com /wiki/display/JSS/Scripting + Samples ).

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.

此插件为我彻底改变了JIRA的功能.我可以快速更改脚本,而无需重新编译或重新启动JIRA.您必须检查出来.

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.