I've set up a teams-based Jira project using a Kanban template. I've removed all issue types except for the Bug issue type and removed a few fields I didn't need for that issue type.
However, when I go to create a new issue in the project I still see the fields that I had removed. It looks fine when I go to view/edit existing issues but the problem is in the screen where I create the issue.
Is there a way to resolve this problem in a teams-based project? A lot of the solutions I've seen so far require me to set up a company-managed project which my Jira administrator understandably does not want.
Here is a working example for custom email with Jira JAVA API
import com.atlassian.mail.Email;
import com.atlassian.mail.queue.SingleMailQueueItem;
Email email = new Email("email_address@company.com");
email.setCc("another_email_address@company.com");
email.setFromName("what ever you want");
email.setSubject("what ever you want");
email.setBody("what ever you want");
email.setMimeType("text/html");
SingleMailQueueItem smqi = new SingleMailQueueItem(email);
ComponentAccessor.getMailQueue().addItem(smqi);
Note that "setCc" and "setFromName" are not mandatory, you can remove these rows if you don't want them.
You can check your mail queue in Jira to make sure your code works and email are going to the queue.
If the email not sending then you configured the mail server wrong.
Try the code, check if you see the mail in the queue, and/or it being sent.
Let me know the outcome.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi guys, does someone has an example of How I can send an outlook event "Appointment" from JIRA?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not an example, but a hint.
setMultipart(javax.mail.Multipart appointment)
There are multiple examples of the format scattered around the internet...
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.