mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
12 lines
265 B
Ruby
12 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserMailer < ApplicationMailer
|
|
def invitation_email(user)
|
|
@user = user
|
|
@token = @user.send(:set_reset_password_token)
|
|
|
|
mail(to: @user.friendly_name,
|
|
subject: 'You have been invited to Docuseal')
|
|
end
|
|
end
|