mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
Add invitation system (#398)
This commit is contained in:
committed by
GitHub
parent
b6c92cc1b0
commit
519ec80b90
10
app/mailers/invitation_mailer.rb
Normal file
10
app/mailers/invitation_mailer.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
class InvitationMailer < ApplicationMailer
|
||||
def invite(to:, subject:, body:)
|
||||
@body = body
|
||||
|
||||
mail(
|
||||
to: to,
|
||||
subject: subject
|
||||
)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user