fe1259a29f
Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
12 lines
486 B
Text
12 lines
486 B
Text
<% @messages.each do |message| %>
|
|
<p style="font-family: Roboto,"Helvetica Neue",Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
|
<% if message.content %>
|
|
<%= message.content.gsub("\n", "<br/>").html_safe %>
|
|
<% end %>
|
|
<% if message.attachments %>
|
|
<% message.attachments.each do |attachment| %>
|
|
attachment [<a href="<%= attachment.file_url %>" _target="blank">click here to view</a>]
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|
|
<% end %>
|