mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
339 B
Ruby
14 lines
339 B
Ruby
class CollaborationMailer < ApplicationMailer
|
|
default from: "collaboration@notebook.ai"
|
|
|
|
def contributor_invitation(inviter:, invite_email:, universe:)
|
|
@inviter = inviter
|
|
@universe = universe
|
|
|
|
mail(
|
|
to: invite_email,
|
|
subject: "#{@inviter.name} requested your help collaborating on Notebook.ai."
|
|
)
|
|
end
|
|
end
|