You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, these fields get filled with plain text content. That is, in https://github.com/collective/Products.Poi/blob/master/Products/Poi/browser/notifications.py there are issueDetails and responseDetails variables, these are both used for plain text and html mails. In html mail, this means that line breaks \n are not visible because in html line breaks should actually be <br />. Moreover, included links are not clickable. This makes the notification mail not very readable in most desktop and webmail clients as the field's content is not formatted anymore but everything is in one line.
For html notification the issue and resonse details field should rather be converted from text/x-web-intelligent to html instead of plain text.
Sorry, I have no time to work on this.
The text was updated successfully, but these errors were encountered:
In https://github.com/collective/Products.Poi/blob/master/Products/Poi/browser/templates/poi_email_new_issue_html.pt#L36 and https://github.com/collective/Products.Poi/blob/master/Products/Poi/browser/templates/poi_email_new_response_html.pt#L46 there are
issue_details
andresponse_details
fields.However, these fields get filled with plain text content. That is, in https://github.com/collective/Products.Poi/blob/master/Products/Poi/browser/notifications.py there are
issueDetails
andresponseDetails
variables, these are both used for plain text and html mails. In html mail, this means that line breaks\n
are not visible because in html line breaks should actually be<br />
. Moreover, included links are not clickable. This makes the notification mail not very readable in most desktop and webmail clients as the field's content is not formatted anymore but everything is in one line.For html notification the issue and resonse details field should rather be converted from
text/x-web-intelligent
tohtml
instead of plain text.Sorry, I have no time to work on this.
The text was updated successfully, but these errors were encountered: