mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-29 11:15:29 -04:00
7 lines
133 B
Ruby
7 lines
133 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationMailer < ActionMailer::Base
|
|
default from: 'from@example.com'
|
|
layout 'mailer'
|
|
end
|