Files
fizzy/app/mailers/notification/bundle_mailer.rb
T
2025-08-26 13:22:22 +02:00

11 lines
274 B
Ruby

class Notification::BundleMailer < ApplicationMailer
def notification(bundle)
@bundle = bundle
@notifications = bundle.notifications
mail(
to: bundle.user.email_address,
subject: "You have #{@notifications.count} notifications"
)
end
end