Files
fizzy/app/views/mailers/notification/bundle_mailer/notification.text.erb
T
2025-11-12 14:29:25 -06:00

24 lines
885 B
Plaintext

Everything since <%= @bundle.starts_at.strftime("%-l%P on %A, %B %-d") %>
You have <%= pluralize @notifications.count, "new notification" %>.
<% @notifications.group_by(&:card).each do |card, notifications| %>
--------------------------------------------------------------------------------
<%= card.board.name %>
<%= "##{ card.id } #{ card.title }" %>
--------------------------------------------------------------------------------
<%= render partial: "notification/bundle_mailer/notification", collection: notifications, as: :notification %>
<% end %>
--------------------------------------------------------------------------------
Fizzy emails you about new notifications every few hours.
Change how often you get these:
<%= notifications_settings_url %>
Unsubscribe from all email notifications:
<%= new_notifications_unsubscribe_url(access_token: @unsubscribe_token) %>