6 lines
130 B
6 lines
130 B
2 years ago
|
class ResendInvitationMailer < NotifyMailer
|
||
|
def resend_invitation_email(user)
|
||
|
user.send_confirmation_instructions
|
||
|
end
|
||
|
end
|