actionmailer 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionmailer might be problematic. Click here for more details.
- data/CHANGELOG +5 -0
- data/lib/action_mailer/base.rb +1 -1
- data/rakefile +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
*0.6.1* (January 18th, 2005)
|
2
|
+
|
3
|
+
* Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address
|
4
|
+
|
5
|
+
|
1
6
|
*0.6* (January 17th, 2005)
|
2
7
|
|
3
8
|
* Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel]
|
data/lib/action_mailer/base.rb
CHANGED
@@ -128,7 +128,7 @@ module ActionMailer #:nodoc:
|
|
128
128
|
def perform_delivery_smtp(mail)
|
129
129
|
Net::SMTP.start(server_settings[:address], server_settings[:port], server_settings[:domain],
|
130
130
|
server_settings[:user_name], server_settings[:password], server_settings[:authentication]) do |smtp|
|
131
|
-
smtp.sendmail(mail.encoded, mail.
|
131
|
+
smtp.sendmail(mail.encoded, mail.from, mail.destinations)
|
132
132
|
end
|
133
133
|
end
|
134
134
|
|
data/rakefile
CHANGED
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
|
|
8
8
|
|
9
9
|
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
|
10
10
|
PKG_NAME = 'actionmailer'
|
11
|
-
PKG_VERSION = '0.6.
|
11
|
+
PKG_VERSION = '0.6.1' + PKG_BUILD
|
12
12
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
13
13
|
|
14
14
|
desc "Default Task"
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: actionmailer
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.6.
|
7
|
-
date: 2005-01-
|
6
|
+
version: 0.6.1
|
7
|
+
date: 2005-01-18
|
8
8
|
summary: Service layer for easy email delivery and testing.
|
9
9
|
require_paths:
|
10
10
|
- lib
|