5 lines
124 B
Ruby
5 lines
124 B
Ruby
|
# Top mailer class, from which all others are inheritors
|
||
|
class ApplicationMailer < ActionMailer::Base
|
||
|
layout 'mailer'
|
||
|
end
|