cupid 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -2
- data/lib/cupid/methods/email.rb +1 -1
- data/lib/cupid/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -77,13 +77,13 @@ send_tracking_ids = et_translator.send_emails_to_lists({'email_id' => 'list_id',
|
|
77
77
|
Puts this line into `Gemfile` then run `$ bundle`:
|
78
78
|
|
79
79
|
``` ruby
|
80
|
-
gem 'cupid', '0.2.
|
80
|
+
gem 'cupid', '0.2.4'
|
81
81
|
```
|
82
82
|
|
83
83
|
Or if you are old-school Rails 2 developer put this into `config/environment.rb` and run `$ rake gems:install`:
|
84
84
|
|
85
85
|
``` ruby
|
86
|
-
config.gem 'cupid', :version => '0.2.
|
86
|
+
config.gem 'cupid', :version => '0.2.4'
|
87
87
|
```
|
88
88
|
|
89
89
|
Or manually install cupid gem: `$ gem install cupid`
|
data/lib/cupid/methods/email.rb
CHANGED
@@ -62,7 +62,7 @@ module Cupid
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def send_email_to_list(email_id, list_id, account=nil)
|
65
|
-
soap_body =
|
65
|
+
soap_body = prepare_send(email_id, list_id, account)
|
66
66
|
|
67
67
|
response = build_request('Create', 'CreateRequest', soap_body)
|
68
68
|
response = Nokogiri::XML(response.http.body).remove_namespaces!
|
data/lib/cupid/version.rb
CHANGED
metadata
CHANGED