Sha256: 91d5f342ce4ae7bc2fe4d47399bf589aff1431f89b0fcc8365d1f10b96151b7b
Contents?: true
Size: 1.87 KB
Versions: 2
Compression:
Stored size: 1.87 KB
Contents
module Maily class EmailsController < Maily::ApplicationController before_action :allowed_action?, only: [:edit, :update, :deliver] before_action :load_mailers, only: [:index, :show, :edit] before_action :load_mailer_and_email, except: [:index] around_action :perform_with_locale, only: [:show, :raw, :deliver] def index end def show valid, message = @maily_email.validate_arguments unless valid redirect_to(root_path, alert: message) end end def raw content = if @email.parts.present? params[:part] == 'text' ? @email.text_part.body : @email.html_part.body else @email.body end render html: content.raw_source, layout: false end def attachment attachment = @email.attachments.find { |elem| elem.filename == params[:attachment] } send_data attachment.body, filename: attachment.filename, type: attachment.content_type end def edit @template = @maily_email.template(params[:part]) end def update @maily_email.update_template(params[:body], params[:part]) redirect_to maily_email_path(mailer: params[:mailer], email: params[:email], part: params[:part]) end def deliver @email.to = params[:to] @email.deliver redirect_to maily_email_path(mailer: params[:mailer], email: params[:email]) end private def allowed_action? Maily.allowed_action?(action_name) || redirect_to(root_path, alert: "Maily: action #{action_name} not allowed!") end def load_mailers @mailers = Maily::Mailer.all end def load_mailer_and_email mailer = Maily::Mailer.find(params[:mailer]) @maily_email = mailer.find_email(params[:email]) @email = @maily_email.call end def perform_with_locale I18n.with_locale(params[:locale]) do yield end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
maily-0.6.3 | app/controllers/maily/emails_controller.rb |
maily-0.6.2 | app/controllers/maily/emails_controller.rb |