initial commit

This commit is contained in:
Alex Turchyn
2023-05-21 17:59:36 +03:00
commit 97c462ead2
159 changed files with 10987 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# 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