12 lines
255 B
Ruby
12 lines
255 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class TableInviteMailer < ApplicationMailer
|
||
|
helper(:mailer)
|
||
|
|
||
|
def invite_user
|
||
|
@table_invite = params[:table_invite]
|
||
|
|
||
|
mail(to: @table_invite.email, subject: "[Tabletop Companion] Invite to join a table")
|
||
|
end
|
||
|
end
|