24 lines
963 B
Plaintext
24 lines
963 B
Plaintext
Notifications since <%= @bundle.starts_at.strftime("%-l%P on %A, %B %-d") %>
|
|
You have <%= pluralize @notifications.count, "new notification" %><%= " in #{ Current.account.name }" if @user.identity.accounts.many? %>.
|
|
|
|
<% @notifications.group_by(&:card).each do |card, notifications| %>
|
|
--------------------------------------------------------------------------------
|
|
|
|
<%= card.board.name %>
|
|
<%= "##{ card.number } #{ 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) %>
|