mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
333 B
Ruby
14 lines
333 B
Ruby
class UnsubscribedMailer < ApplicationMailer
|
|
default from: "notebook@indentlabs.com"
|
|
|
|
def unsubscribed(user)
|
|
@user_name = user.name.presence || 'worldbuilder'
|
|
@user_email = user.email
|
|
|
|
mail(
|
|
to: @user_email,
|
|
subject: "Update your payment method to keep your Notebook.ai Premium features"
|
|
)
|
|
end
|
|
end
|