2020-03-06 11:46:39 +01:00
|
|
|
module FoodsoftWiki
|
|
|
|
module Mailer
|
|
|
|
def self.included(base) # :nodoc:
|
|
|
|
base.class_eval do
|
|
|
|
# modify user presentation link to writing a message for the user
|
2023-05-12 13:01:12 +02:00
|
|
|
def additonal_welcome_text(_user)
|
|
|
|
return unless FoodsoftWiki.enabled? && (page = Page.welcome_mail)
|
|
|
|
|
|
|
|
page.body
|
2020-03-06 11:46:39 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# modify existing helper
|
|
|
|
ActiveSupport.on_load(:after_initialize) do
|
2023-05-12 13:01:12 +02:00
|
|
|
Mailer.include FoodsoftWiki::Mailer
|
2020-03-06 11:46:39 +01:00
|
|
|
end
|