Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello,
I have a problem. I have a custom field email. The user create a issue, he indicate his email via the custom field. I would like that JIRA sends a notification to the email address which is specified in the custom field email. How to make the notification is sent to this email?
Best regard,
Guis
Use this in your post function for Create and other transitions.
Good suggestion.
Add a text (< 255) custom field. Try to retrieve it's value into the groovy script (do some RND). Send the email to that email address using the script upon the create transition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that's the way.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the answer. I have add the post script function and I use the script "send a custom email". But I indicate in the field "To issue fields" my custom field mail, a notification is send but the
notification is not sent to the person indicate in the custom field.
Why?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use https://marketplace.atlassian.com/plugins/net.vacom.jirassimo/server/overview
to achieve that. Destination can be dynamic and based on the content of your JIRA issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Guis,
I am not sure if you have already solved this problem but at leat for others who stumble upon this check out this :
To find out ID values of your custom fields :
https://answers.atlassian.com/questions/102822/how-can-i-find-the-id-of-a-custom-field-in-jira-5
Finally the free plugin you need :
https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner
Hope this helps,
Cheers,
Baris
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Didn't think of anonymous access. :)
In this case you will have to look for a custom field plugin. May be you will be able to develop a plugin, which takes an e-mail address as its input and emails the entire issue to that email address.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you don't wanna code your own...
https://marketplace.atlassian.com/plugins/com.metainf.jira.plugin.emailissue
will send mails to non-jira users
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why don't you send the notification to the user's email address specified in his user account?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you add it in the notification scheme for create issue event to send notification from the value picked up from the user-picker custom field?
Note: You may have to configure your custom field as user-picker type
Rahul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you! But the user don't have account JIRA therefor I can't to use the user-picker custom field. How can I send a notification using a text custom field?
The field contains the email address.
Guis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.