13 lines
314 B
Ruby
13 lines
314 B
Ruby
class ApplicationMailer < ActionMailer::Base
|
|
default from: "The BOXCAR team <support@37signals.com>"
|
|
|
|
layout "mailer"
|
|
append_view_path Rails.root.join("app/views/mailers")
|
|
helper AvatarsHelper, HtmlHelper
|
|
|
|
private
|
|
def default_url_options
|
|
super.merge(script_name: Account.sole.slug)
|
|
end
|
|
end
|