Sha256: c7d82bf13f71a57a9d3e67af44ceb5515dcfcfb3cde058cc90a273b627b2c4fb

Contents?: true

Size: 259 Bytes

Versions: 11

Compression:

Stored size: 259 Bytes

Contents

class WelcomeController < ApplicationController
  def signup
    UserMailer.deliver_signup(params['Email'], params['Name'])
  end

  def confirm
  end

  def newsletter
    UserMailer.send_later(:deliver_newsletter, params['Email'], params['Name'])
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
bmabey-email_spec-0.3.2 examples/rails_root/app/controllers/welcome_controller.rb
bmabey-email_spec-0.3.3 examples/rails_root/app/controllers/welcome_controller.rb
bmabey-email_spec-0.3.4 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.6.0 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.5.0 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.4.0 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.3.8 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.3.7 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.3.6 examples/rails_root/app/controllers/welcome_controller.rb
glennr-email_spec-0.3.5 examples/rails_root/app/controllers/welcome_controller.rb
email_spec-0.3.5 examples/rails_root/app/controllers/welcome_controller.rb