I have a Jira team managed project. On issue creation, I'd like to set an Email address custom field automatically by converting a text value from another Preferred Name custom field. The caveat is that Preferred Name can be "First Last" or "First Middle Last", but id only want the email address to take the First and Last to create this: first.last@company.com.
Would appreciate assistance.
Hi @Akram Rajwani ,
You can do something like this
{{issue.summary.split(" ").first}}.{{issue.summary.split(" ").last}}@company.com
Here I used summary as an example, but you can replace that with your custom field.
Hope that helps!
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.