11 lines
274 B
Ruby
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 |