Skip to content
This repository has been archived by the owner on Dec 21, 2019. It is now read-only.

jviney/action-mailer-queue

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ActionMailerQueue

This plugin was originally based on action-mailer-queue by Andrew Beam. It has been rewritten for Rails 3.

Usage

class MyMailer < ActionMailer::Base
  # Tell the mailer to deliver with active record
  self.delivery_method = :active_record

  def test
    mail(:to => "test@test.com", :from => "test@test.com")
  end
end

# Creates a records in the emails table (see spec/schema.rb for structure).
MyMailer.test.deliver

Contributors

  • Jonathan Viney

  • Andrew Beam - original author

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%