1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00

Fix for reply on notification e-mail not assigned to original conversion

Mac mail (at least) removes elements that are set to display none when you're replying. Because the {#FS:****#} was in an hidden div it was removed, and freescout was not able anymore to relate the reply to the original conversation. Simply removing the display none fixes that.
This commit is contained in:
ChrisRAoW 2020-04-12 20:44:50 +02:00 committed by GitHub
parent a86721f992
commit e1ed469ec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,7 +254,7 @@
<tr>
<td height="0" style="font-size: 0px; line-height: 0px; color:#ffffff;">
{{-- Addition to Message-ID header to detect relies --}}
<div style="font-size: 0px; line-height: 0px; color:#ffffff !important; display:none;">{{ \MailHelper::getMessageMarker($headers['Message-ID']) }}</div>
<div style="font-size: 0px; line-height: 0px; color:#ffffff !important;">{{ \MailHelper::getMessageMarker($headers['Message-ID']) }}</div>
</td>
</tr>
</table>
@ -266,4 +266,4 @@
<meta itemprop="description" content="{{ __('Open this conversation in :app_name', ['app_name' => 'FreeScout']) }}"/>
</div>
</body>
</html>
</html>