1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
# Copyright 2012 Mail Bypass, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
require 'rubygems'
require 'json'
require 'date'
require 'pp'
require '../lib/messagebus_ruby_api'
# Make single instance of class to only ma
# If you are sending messages from various points across your code, using a single "MessageBus"
# object instance will efficiently batch transactions, resulting in higher throughput.
class MessagebusInstance < MessagebusApi::Messagebus
def initialize
api_key="YOUR_ACCOUNT_API_KEY_GOES_HERE"
@client = MessagebusApi::Messagebus.new(api_key)
end
def self.instance
@@instance = MessagebusInstance.new
end
def client
@client
end
end
client = MessagebusInstance.instance.client
# send an email with the headers and params set
message1 = { :toEmail => 'jane.smith@example.com',
:toName => 'Jane Smith',
:fromEmail => 'noreply@messagebus.com',
:fromName => 'Example Corporation',
:subject => 'Single Message Sample for Jane Smith',
:customHeaders => {"sender"=>"mailing_system@example.com","reply-to"=>"reply@example.com"},
:plaintextBody => 'This message is only a test sent by the Ruby Message Bus client library.',
:htmlBody => "<html><body>This message is only a test sent by the Ruby Message Bus client library.</body></html>",
:tags => ['RUBY', 'campaign_id_1', 'recent_users']
}
message2 = { :toEmail => 'john.doe@example.com',
:toName => 'John Doe',
:fromEmail => 'noreply@messagebus.com',
:fromName => 'Example Corporation',
:subject => 'Single Message Sample for John Doe',
:customHeaders => {"sender"=>"mailing_system@example.com","reply-to"=>"reply@example.com"},
:plaintextBody => 'This message is only a test sent by the Ruby Message Bus client library.',
:htmlBody => "<html><body>This message is only a test sent by the Ruby Message Bus client library.</body></html>",
:tags => ['RUBY', 'campaign_id_1', 'recent_users']
}
# The Message Bus API buffers email in a local queue to increase performance. When size of the local queue
# reaches a threshold (default is 20), the messages are automatically flushed and sent. Remaining queued
# messages are sent when the API instance is closed or destructed. In the
# example below, we call the flush() explicitly just for example.
begin
client.add_message(message1)
client.add_message(message2)
client.flush
status = client.results
puts "Successes: #{status[:successCount]}"
puts "Failuers: #{status[:failureCount]}"
# In this example, we loop over each row of the "results" array to provide feedback for each message sent
if status[:statusCode] == 202
puts "Message sent successfully"
status[:results].each do |result|
puts "Message to #{result[:toEmail]} MessageId: #{result[:messageId]}"
end
else
puts "Problem in sending messages. #{status[:statusCode]}-#{status[:statusMessage]}"
end
rescue Exception => e
puts "Error occurred while sending messages."
puts e.message
end
|