mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
affeb51569
Including: - Moved mailer objects in separate directory - Added two tests for asset_host configuration option
7 lines
108 B
Ruby
7 lines
108 B
Ruby
class AssetMailer < ActionMailer::Base
|
|
self.mailer_name = "asset_mailer"
|
|
|
|
def welcome
|
|
mail
|
|
end
|
|
end
|