send_message.html.erb 640 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
  5. </head>
  6. <body>
  7. <% if @body.present? %>
  8. <%= sanitize @body %>
  9. <% else %>
  10. <% if @headline %>
  11. <h1><%= sanitize @headline %></h1>
  12. <% end %>
  13. <% @groups.each do |group| %>
  14. <div style='margin-bottom: 10px;'>
  15. <div><%= sanitize group[:title] %></div>
  16. <% group[:entries].each do |entry| %>
  17. <div style='margin-left: 10px;'>
  18. <%= sanitize entry %>
  19. </div>
  20. <% end %>
  21. </div>
  22. <% end %>
  23. <% end %>
  24. </body>
  25. </html>