5 lines
132 B
Ruby
5 lines
132 B
Ruby
# frozen_string_literal: true
|
|
class ApplicationMailer < ActionMailer::Base
|
|
default from: 'team@metamaps.cc'
|
|
layout 'mailer'
|
|
end
|