mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
12 lines
332 B
Ruby
12 lines
332 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
class TestMailer < ApplicationMailer
|
|
def test_email(user)
|
|
recipient = user.respond_to?(:id) ? user : Spree::User.find(user)
|
|
subject = "#{Spree::Config[:site_name]} #{t('spree.test_mailer.test_email.subject')}"
|
|
mail(to: recipient.email, subject:)
|
|
end
|
|
end
|
|
end
|