21 lines
580 B
Plaintext
21 lines
580 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
|
</head>
|
|
<body>
|
|
<p>
|
|
<%= @data['reply'].to_s.gsub(/[(\n)(\r)]/, "\n" => "<br/>", "\r" => "" ).html_safe %>
|
|
</p>
|
|
<% attachment = @data['attachment']
|
|
if attachment.present? %>
|
|
<% filename = File.basename(attachment) %>
|
|
<p>
|
|
<%= t('ask.attachment') %>:
|
|
<a title="<%= filename %>" target="_blank" href="<%= @data['host_url'] + attachment %>"><%= filename %></a>
|
|
</p>
|
|
<% end %>
|
|
<br />
|
|
<p><%= t('ask.email_automation_hint') %></p>
|
|
</body>
|
|
</html> |