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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.