EvoBal/app/services/email_operation/junk.rb

14 lines
154 B
Ruby
Raw Normal View History

2021-01-26 16:01:09 +01:00
# frozen_string_literal: true
module EmailOperation
2021-01-26 16:01:09 +01:00
class Junk < Base
def process(email)
email.junk = true
email
end
end
end