added trumail validator after update and implement simple email validator interaction

This commit is contained in:
olegphenomenon 2021-11-02 14:21:05 +02:00
parent 00bb2ffb45
commit 41feb7c601
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,9 @@
module Actions
module SimpleMailValidator
extend self
def run(email:, level:)
Truemail.validate(email, with: level).result
end
end
end