Module: CamaleonCms::EmailHelper

Included in:
CamaleonController
Defined in:
app/helpers/camaleon_cms/email_helper.rb

Instance Method Summary collapse

Instance Method Details

#cama_send_email(email_to, subject, args = {}) ⇒ Object

short method of send_email



17
18
19
20
21
22
23
24
25
# File 'app/helpers/camaleon_cms/email_helper.rb', line 17

def cama_send_email(email_to, subject, args = {})
  args = {from: current_site.get_option("email"), url_base: cama_root_url, current_site: current_site, cc_to: [], template_name: 'mailer', layout_name: 'camaleon_cms/mailer', format: 'html', subject: subject}.merge(args)
  args[:attachments] = args[:attachs] if args[:attachs].present?
  args[:current_site] = args[:current_site].id

  # run hook "email" to customize values
  hooks_run("email", args)
  CamaleonCms::HtmlMailer.sender(email_to, args[:subject], args).deliver_later
end

#send_email(email, subject = 'Tiene una notificacion', content = '', from = nil, attachs = [], template_name = nil, layout_name = nil, extra_data = {}) ⇒ Object

send and email email: email to subject: Subject of the email content: content of the email from: email figured as from attachs: array of files to be attached to the email layout_name: path of the template to render template_name: template name to render in template_path



11
12
13
14
# File 'app/helpers/camaleon_cms/email_helper.rb', line 11

def send_email(email, subject='Tiene una notificacion', content='', from=nil, attachs=[], template_name = nil, layout_name = nil, extra_data = {})
  args = {template_name: template_name, layout_name: layout_name, from: from || current_site.get_option("email"), url_base: cama_root_url, content: content, attachs: attachs, extra_data: extra_data, current_site: current_site}
  cama_send_email(email, subject, args)
end

#send_password_reset_email(user_to_send) ⇒ Object



35
36
37
38
39
40
41
42
43
44
# File 'app/helpers/camaleon_cms/email_helper.rb', line 35

def send_password_reset_email(user_to_send)
  user_to_send.send_password_reset
  reset_url = cama_admin_forgot_url({h: user_to_send.password_reset_token})
  extra_data = {
      :url => reset_url,
      :fullname => user_to_send.fullname,
      :user => user_to_send
  }
  send_email(user_to_send.email, t('camaleon_cms.admin.login.message.subject_email'), '', nil, [], 'password_reset', 'camaleon_cms/mailer', extra_data)
end

#send_user_confirm_email(user_to_confirm) ⇒ Object



27
28
29
30
31
32
33
# File 'app/helpers/camaleon_cms/email_helper.rb', line 27

def send_user_confirm_email(user_to_confirm)
  user_to_confirm.send_confirm_email
  confirm_email_url = cama_admin_confirm_email_url({h: user_to_confirm.confirm_email_token})
  Rails.logger.info "Sending email verification to #{user_to_confirm}"
  extra_data = {:url => confirm_email_url, :fullname => user_to_confirm.fullname}
  send_email(user_to_confirm.email, t('camaleon_cms.admin.login.confirm.text'), '', nil, [], 'confirm_email', 'camaleon_cms/mailer', extra_data)
end