Class: CamaleonCms::HtmlMailer
- Inherits:
-
ActionMailer::Base
- Object
- ActionMailer::Base
- CamaleonCms::HtmlMailer
- Includes:
- HooksHelper, PluginsHelper, SiteHelper
- Defined in:
- app/mailers/camaleon_cms/html_mailer.rb
Overview
Camaleon CMS is a content management system
Copyright (C) 2015 by Owen Peredo Diaz
Email: [email protected]
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License (GPLv3) for more details.
Instance Method Summary collapse
-
#sender(email, subject = 'Hello', data = {}) ⇒ Object
content=”, from=nil, attachs=[], url_base=”, current_site, template_name, layout_name, extra_data, format, cc_to.
Methods included from PluginsHelper
#current_plugin, #plugin_asset_path, #plugin_asset_url, #plugin_destroy, #plugin_install, #plugin_layout, #plugin_load_helpers, #plugin_uninstall, #plugin_upgrade, #plugin_view, #plugins_initialize, #self_plugin_key
Methods included from HooksHelper
#hook_run, #hook_skip, #hooks_run
Methods included from SiteHelper
#cama_get_list_layouts_files, #cama_get_list_template_files, #current_locale, #current_site, #current_theme, #site_after_install, #site_install_theme, #site_uninstall_theme
Instance Method Details
#sender(email, subject = 'Hello', data = {}) ⇒ Object
content=”, from=nil, attachs=[], url_base=”, current_site, template_name, layout_name, extra_data, format, cc_to
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'app/mailers/camaleon_cms/html_mailer.rb', line 18 def sender(email, subject='Hello', data = {}) data = data.to_sym data[:current_site] = CamaleonCms::Site.main_site.decorate unless data[:current_site].present? data[:current_site] = CamaleonCms::Site.find(data[:current_site]).decorate if data[:current_site].is_a?(Integer) current_site = @current_site = data[:current_site] data = {cc_to: current_site.get_option("email_cc", '').split(','), from: current_site.get_option("email_from") || current_site.get_option("email"), template_name: 'mailer', layout_name: 'camaleon_cms/mailer', format: 'html'}.merge(data) @subject = subject @html = data[:content] @url_base = data[:url_base] @extra_data = data[:extra_data] data[:cc_to] = [data[:cc_to]] if data[:cc_to].is_a?(String) || !data[:cc_to].present? mail_data = {to: email, subject: subject} if current_site.get_option("mailer_enabled") == 1 mail_data[:delivery_method] = :smtp mail_data[:delivery_method_options] = {user_name: current_site.get_option("email_username"), password: current_site.get_option("email_pass"), address: current_site.get_option("email_server"), port: current_site.get_option("email_port"), domain: (current_site.the_url.to_s.parse_domain rescue "localhost"), authentication: "plain", enable_starttls_auto: true } end mail_data[:cc] = data[:cc_to].clean_empty.join(",") if data[:cc_to].present? mail_data[:from] = data[:from] if data[:from].present? views_dir = "app/apps/" self.prepend_view_path(File.join($camaleon_engine_dir, views_dir).to_s) self.prepend_view_path(Rails.root.join(views_dir).to_s) theme = current_site.get_theme lookup_context.prefixes.prepend("themes/#{theme.slug}") if theme.settings["gem_mode"] lookup_context.prefixes.prepend("themes/#{theme.slug}/views") unless theme.settings["gem_mode"] lookup_context.use_camaleon_partial_prefixes = true (data[:files] || data[:attachments] || []).each{ |attach| ["#{File.basename(attach)}"] = File.open(attach, 'rb') { |f| f.read } if File.exist?(attach) } layout = data[:layout_name].present? ? data[:layout_name] : false if data[:template_name].present? # render email with template mail(mail_data) { |format| format.html { render data[:template_name], layout: layout } } if data[:format] == "html" mail(mail_data) { |format| format.text { render data[:template_name], layout: layout } } if data[:format] == "txt" else # inline render content mail(mail_data) { |format| format.html { render inline: @html, layout: layout } } if data[:format] == "html" mail(mail_data) { |format| format.text { render inline: @html, layout: layout } } if data[:format] == "txt" end mail(mail_data) unless data[:format].present? end |