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

Commit

Permalink
need to load ar_mailer in ar_sendmail removing TableName option and u…
Browse files Browse the repository at this point in the history
…sing email_class *sorry*
  • Loading branch information
adzap committed Jun 30, 2009
1 parent 1499756 commit df08b88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/action_mailer/ar_sendmail.rb
Expand Up @@ -2,6 +2,8 @@
require 'net/smtp' require 'net/smtp'
require 'smtp_tls' unless Net::SMTP.instance_methods.include?("enable_starttls_auto") require 'smtp_tls' unless Net::SMTP.instance_methods.include?("enable_starttls_auto")
require 'rubygems' require 'rubygems'
require 'action_mailer'
require 'action_mailer/ar_mailer'


## ##
# Hack in RSET # Hack in RSET
Expand All @@ -21,8 +23,6 @@ def reset
end end
end end


module ActionMailer; end # :nodoc:

## ##
# ActionMailer::ARSendmail delivers email from the email table to the # ActionMailer::ARSendmail delivers email from the email table to the
# SMTP server configured in your application's config/environment.rb. # SMTP server configured in your application's config/environment.rb.
Expand All @@ -43,7 +43,7 @@ class ActionMailer::ARSendmail
## ##
# The version of ActionMailer::ARSendmail you are running. # The version of ActionMailer::ARSendmail you are running.


VERSION = '2.1.1' VERSION = '2.1.2'


## ##
# Maximum number of times authentication will be consecutively retried # Maximum number of times authentication will be consecutively retried
Expand Down

0 comments on commit df08b88

Please sign in to comment.