mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
10 lines
158 B
Ruby
10 lines
158 B
Ruby
class InvitationMailer < ApplicationMailer
|
|
def invite(to:, subject:, body:)
|
|
@body = body
|
|
|
|
mail(
|
|
to: to,
|
|
subject: subject
|
|
)
|
|
end
|
|
end |