mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 01:41:42 +00:00
9 lines
190 B
Ruby
9 lines
190 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Envía los mensajes de contacto
|
||
|
class ContactJob < ApplicationJob
|
||
|
def perform(**args)
|
||
|
ContactMailer.with(**args).notify_usuaries.deliver_now
|
||
|
end
|
||
|
end
|