Sha256: a2e68e9796dffcada029fcdb45429671fcfb65c4a7b99dfe89cadf7fa67e613a

Contents?: true

Size: 1.2 KB

Versions: 3

Compression:

Stored size: 1.2 KB

Contents

module IshManager
  class ApplicationMailer < ActionMailer::Base
    default from: 'WasyaCo Consulting <no-reply@wasya.co>'
    layout 'mailer'

    def shared_galleries profiles, gallery
      return if profiles.count == 0
      @gallery        = gallery
      @domain         = Rails.application.config.action_mailer.default_url_options[:host]
      @galleries_path = IshManager::Engine.routes.url_helpers.galleries_path
      @gallery_path   = IshManager::Engine.routes.url_helpers.gallery_path(@gallery.slug)
      mail( :to => '314658@gmail.com',
            :bcc => profiles.map { |p| p.email },
            :subject => 'You got new shared galleries on pi manager' ).deliver
    end

    def option_alert option
      @option = option
      mail({
        :to => option.profile.email,
        :subject => "IshManager Option Alert :: #{option.ticker}",
      })
    end

    def stock_alert watch_id
      @watch = Iro::OptionWatch.find watch_id
      mail({
        to: @watch.profile.email,
        subject: "Iro Watch Alert :: #{@watch.ticker} is #{@watch.direction} #{@watch.mark}."
      })
    end

    def test_email
      mail( to: 'piousbox@gmail.com', subject: "Test email at #{Time.now}" )
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ish_manager-0.1.8.403 app/mailers/ish_manager/application_mailer.rb
ish_manager-0.1.8.402 app/mailers/ish_manager/application_mailer.rb
ish_manager-0.1.8.401 app/mailers/ish_manager/application_mailer.rb