mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-04 22:16:08 +00:00
12 lines
358 B
Ruby
12 lines
358 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
class TestMailer < BaseMailer
|
|
def test_email(user)
|
|
recipient = user.respond_to?(:id) ? user : Spree.user_class.find(user)
|
|
subject = "#{Spree::Config[:site_name]} #{t('spree.test_mailer.test_email.subject')}"
|
|
mail(to: recipient.email, from: from_address, subject: subject)
|
|
end
|
|
end
|
|
end
|