amazon-ses-mailer 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/amazon-ses-mailer.rb +12 -0
- data/lib/amazon-ses-mailer/version.rb +1 -1
- metadata +3 -3
data/lib/amazon-ses-mailer.rb
CHANGED
@@ -20,6 +20,18 @@ module AmazonSes
|
|
20
20
|
@access_key = opts[:access_key]
|
21
21
|
@secret_key = opts[:secret_key]
|
22
22
|
end
|
23
|
+
|
24
|
+
##### Start ActionMailer-specific stuff #####
|
25
|
+
attr_accessor :settings
|
26
|
+
|
27
|
+
def new(*args)
|
28
|
+
self
|
29
|
+
end
|
30
|
+
|
31
|
+
def deliver!(msg)
|
32
|
+
deliver(msg)
|
33
|
+
end
|
34
|
+
##### End ActionMailer-specific stuff #####
|
23
35
|
|
24
36
|
def deliver(msg)
|
25
37
|
@time = Time.now
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Eli Fox-Epstein
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-01-
|
18
|
+
date: 2011-01-31 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|