-
Suggestion
-
Resolution: Fixed
-
None
NOTE: This suggestion is for JIRA Service Desk Server. Using JIRA Service Desk Cloud? See the corresponding suggestion.
This has been fixed, and relies on the underlying JIRA version as well as the Service Desk fixed version.
Therefore, the fix will be available along with JIRA 7.1.0. This should be available to Cloud customers within 2 - 3 weeks, and a bit longer for Server customers.
Currently if a customer replies to a Service Desk request, with imagem and text after the image in the mail body, the message will be added to the request not aligned the same way as the mail body.
It will add all the text first, and the images in the bottom of the comment.
As a Service Desk user that work a lot with images, I would like to keep the same mail body alignment in the ticket comment.
- incorporates
-
JSDSERVER-1715 Include inline images when creating issues via mail channel
- Closed
- is duplicated by
-
JSDSERVER-2360 As a customer , would like object/image attached from email auto displayed in issue description
- Closed
- is related to
-
JSDSERVER-1387 Issue created via email creates inline image in Description and Comment
-
- Closed
-
-
DESK-4458 Failed to load
- relates to
-
JSDCLOUD-2315 Images in emails received from customers are not in-line with text
- Closed
- was cloned as
-
DESK-4395 Loading...
I double check, we use `com.atlassian.mail.MailUtils#getBody(javax.mail.Message)` to get text content from the body.
If the email is multipart, it just gets the content from plain text part which has no trace of inline image. Hence, there're no ways for us to rely on text content.
The format `[image: Inline image 1]` is most likely from JIRA wiki markup. Emails can be from different sources, not just JIRA, so we should not count on that pattern.
The best catch is passing html content and parsing to text with inline image markup.