I created an Issue Collector for our Front Door Request process. The Issue Collector was embedded in a Wiki page. 80% of employees submitting a request will be Anonymous. How can I capture their email in the Description section so I can setup an Automation that will send them notification as the issues transitions from Open Status to Closed?
I am a Project Administrator (not a Jira Admin). Below is the results of smart values query:
Description: {{issue.fields.description}}
Description:
Test
*Reporter*: Carl Vernon
*E-Mail*: [mailto:cv1356@abc.com]
I have tried the following without success:
Email: {{#issues}}{{issueCollector.email}}{{/issues}}
Email: {{issue.MailtoCustomer.value}}
Reporter: {{issue.description.match("Reporter:\s(.*)")}}
Email: {{issue.description.match("E-mail:\s(.*)")}}
Email: {{issue.description.match("([a-z]+@[a-z]+\.[a-z]{2,4})")}}
Email: {{issue.description.email}}
I figured it out. I used a Smart Value string query to pull the email from the Description section of the Issue Collector:
{{issue.description.substringBetween("o:","]")}}
Description:
Test
*Reporter*: Carl Vernon
*E-Mail*: [mailto:cv1356@abc.com]
RESULTS: cv1356@abc.com
I then created an automation with the Create Trigger and used the Smart Value string query in the To: field of the Send Email component.
I was looking for this for ages... thank you!
Here is a smart value to extract Name from the issue collector as well: {{issue.description.substringBetween("*: ","\n")}}
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.
Hi @Ileana Reyes-Buchholz @Krzysztof Skrzypczyk @Prasad Kawadkar Thanks for this great tip. I've successfully configured the automation rule in my JIRA cloud instance and the audit log says the email has been sent. However, I don't see anything in my inbox. Can you please share what am I missing?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you set yourself as the Default Reporter? This will also make it possible to setup future automations for Anonymous Users.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ileana Reyes-Buchholz Due to the integration between qTest and JIRA, yes the default reporter comes as my name. however, I followed this method to send email to non-jira users. so I was pulling the substring email from the description. The reporter shouldn't really matter. For testing purposes, I gave my email address in the description field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It actually worked. I think it as an issue with one particular jira ticket. thanks for the help.
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.
I followed the same, the Automation rule runs successfully but the mail is not being sent, I tried giving a specific mail too but no luck.
Please help.
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.
Can someone please add the steps involved in adding the smart values in Issue collector
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is a smart value to extract Name from the issue collector as well: {{issue.description.substringBetween("*: ","\n")}}
I have experimented with this one and was wondering why it only seems to pick up the Reporter: inserted by the issue collector (the result I wanted) bit not text earlier in the description box that also has Reporter:
The email one is fine as the mailto: prefixes the email address even though you cant see it in the Description box unless you hover
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.