Files
fizzy/app/views/mailers/notification/bundle_mailer/notification.text.erb
T
Jason Zimdars 9bae30f771 Show account if you have multiple
It's hard to know which account email notifications are coming from
2025-11-20 22:03:54 -06:00

24 lines
960 B
Plaintext

Everything 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) %>