Unfortunately, not possible at the moment. However, you can design the issue creation email template to the similar as JIRA default email template or with your own custom design.
For example, put the Email format to HTML:
Apply the sample script below in the Email Template field:
Hey,
<% String baseUrl = com.atlassian.jira.component.ComponentAccessor.applicationProperties.getString("jira.baseurl") %>
<% baseUrl = baseUrl+"/browse/"+issue.key%>
<br>
<br>
The ${issue.issueType.name} <a href="<%out <<baseUrl %>">${issue.key}</a> has been Created.
<br>
<br>
Summary: ${issue.summary}
<br>
<br>
Regards,
<br>${issue.reporter?.displayName}
At the results, you will get something like this:
You can beautify the email format that suit your needs. Also, you can pull more fields information to display in the email template.
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.