Sha256: 610d18b82052f54bd3d9b189b30d33f1d2c381fd1380660b23de83f6b01f00d6

Contents?: true

Size: 1.39 KB

Versions: 21

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true

module Decidim
  # This mailer sends a notification email containing the export as an
  # attachment.
  class ExportMailer < ApplicationMailer
    # Public: Sends a notification email with the result of an export in a
    # zipped file.
    #
    # user        - The user to be notified.
    # export_name - The name of the export.
    # export_data - The data containing the result of the export.
    #
    # Returns nothing.
    def export(user, export_name, export_data)
      @user = user
      @organization = user.organization

      filename = export_data.filename(export_name)
      filename_without_extension = export_data.filename(export_name, extension: false)

      attachments["#{filename_without_extension}.zip"] = FileZipper.new(filename, export_data.read).zip

      with_user(user) do
        mail(to: "#{user.name} <#{user.email}>", subject: I18n.t("decidim.export_mailer.subject", name: filename))
      end
    end

    def data_portability_export(user, export_data, export_images)
      @user = user
      @organization = user.organization

      file_zipper = Decidim::DataPortabilityFileZipper.new(@user, export_data, export_images)
      file_zipper.make_zip

      with_user(user) do
        @token = file_zipper.token
        mail(to: "#{user.name} <#{user.email}>", subject: I18n.t("decidim.export_mailer.subject", name: user.name))
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
decidim-core-0.20.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.20.0 app/mailers/decidim/export_mailer.rb
decidim-core-0.19.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.18.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.19.0 app/mailers/decidim/export_mailer.rb
decidim-core-0.17.2 app/mailers/decidim/export_mailer.rb
decidim-core-0.18.0 app/mailers/decidim/export_mailer.rb
decidim-core-0.17.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.16.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.17.0 app/mailers/decidim/export_mailer.rb
decidim-core-0.16.0 app/mailers/decidim/export_mailer.rb
decidim-core-0.15.2 app/mailers/decidim/export_mailer.rb
decidim-core-0.15.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.15.0 app/mailers/decidim/export_mailer.rb
decidim-core-0.14.4 app/mailers/decidim/export_mailer.rb
decidim-core-0.14.3 app/mailers/decidim/export_mailer.rb
decidim-core-0.14.2 app/mailers/decidim/export_mailer.rb
decidim-core-0.14.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.13.1 app/mailers/decidim/export_mailer.rb
decidim-core-0.13.0 app/mailers/decidim/export_mailer.rb