mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 18:01:42 +00:00
20 lines
392 B
Ruby
20 lines
392 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Configuración base del correo
|
|
class ApplicationMailer < ActionMailer::Base
|
|
helper :application
|
|
before_action :inline_logo!
|
|
|
|
layout 'mailer'
|
|
|
|
private
|
|
|
|
def site
|
|
@site ||= Site.find @params[:site_id]
|
|
end
|
|
|
|
def inline_logo!
|
|
attachments.inline['logo.png'] ||=
|
|
File.read(Rails.root.join('app', 'assets', 'images', 'logo.png'))
|
|
end
|
|
end
|