mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-30 11:47:57 -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
|