mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:36:22 +00:00
17 lines
374 B
Ruby
17 lines
374 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Configuración base del correo
|
|
class ApplicationMailer < ActionMailer::Base
|
|
helper :application
|
|
before_action :inline_logo!
|
|
|
|
default from: ENV.fetch('DEFAULT_FROM', "noreply@#{Site.domain}")
|
|
layout 'mailer'
|
|
|
|
private
|
|
|
|
def inline_logo!
|
|
attachments.inline['logo.png'] ||=
|
|
File.read('app/assets/images/logo.png')
|
|
end
|
|
end
|