Hi Team,
I am trying to use JIRA issue collector and we have created issue collector for our project. We embedded it on our website to create issue automatically. However, i have couple of questions:
- I am opening the feedback form based on the click event in our application
<script type="text/javascript">window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function (showCollectorDialog) { jQuery("#requestSupport").click(function (e) {
e.preventDefault();
showCollectorDialog();
}); } };</script>
- I want to send a notification to the user who is reporting the issue (once issue gets created in JIRA). We are collecting the email address in the email field (feedback form)
- Is there any way to achieve this, any notification/event or callback upon issue creation ?
Or if there is any other way to achieve this, please let me know. Appreciate the help !
Thank you !