otwarchive-symphonyarchive/app/views/user_mailer/recipient_notification.html.erb
2026-03-11 22:22:11 +00:00

26 lines
721 B
Text

<% content_for :message do %>
<p><%= t("mailer.general.greeting.informal.addressed_html", name: style_bold(@user.login)) %></p>
<p>
<% if @collection %>
<%= t(".collection.html", collection_link: style_link(@collection.title, collection_url(@collection))) %>
<% else %>
<%= t(".no_collection") %>
<% end %>
</p>
<p>
<% url = @collection ? collection_work_url(@collection, @work) : work_url(@work) %>
<%= creation_link_with_word_count(@work, url) %>
<br>
by <%= creator_links(@work) %>
</p>
<%= render "work_info", work: @work %>
<% if @collection && !@collection.gift_notification.blank? %>
<p><%= @collection.gift_notification %></p>
<% end %>
<% end %>