smtpapi-ruby
This ruby gem allows you to quickly and more easily generate SendGrid X-SMTPAPI headers.
Installation
Add this line to your application's Gemfile:
gem 'smtpapi'
And then execute:
$ bundle
Or install it yourself as:
$ gem install smtpapi
Usage
Initializing
header = Smtpapi::Header.newto_json
This gives you back the stringified json formatted X-SMTPAPI header.
header = Smtpapi::Header.new
header.to_jsonadd_to
header = Smtpapi::Header.new
header.add_to('you@youremail.com')
header.add_to('other@otheremail.com')set_tos
header = Smtpapi::Header.new
header.set_tos(['you@youremail.com', 'other@otheremail.com'])add_substitution
header = Smtpapi::Header.new
header.add_substitution('keep', array('secret')) # sub = {keep: ['secret']}
header.add_substitution('other', array('one', 'two')) # sub = {keep: ['secret'], other: ['one', 'two']}set_substitutions
header = Smtpapi::Header.new
header.set_substitutions({'keep' => 'secret'}) # sub = {keep: ['secret']}add_unique_arg
header = Smtpapi::Header.new
header.add_unique_arg('cat', 'dogs')set_unique_args
header = Smtpapi::Header.new
header.set_unique_args({'cow' => 'chicken'})
header.set_unique_args({'dad' => 'proud'})add_category
header = Smtpapi::Header.new
header.add_category('tactics') # category = ['tactics']
header.add_category('advanced') # category = ['tactics', 'advanced']set_categories
header = Smtpapi::Header.new
header.set_categories(['tactics', 'advanced']) # category = ['tactics', 'advanced']add_section
header = Smtpapi::Header.new
header.add_section('-charge-', 'This ship is useless.'])
header.add_section('-bomber-', 'Only for sad vikings.'])set_sections
header = Smtpapi::Header.new
header.set_sections({'-charge-' => 'This ship is useless.'})add_filter
header = Smtpapi::Header.new
header.add_filter('footer', 'enable', 1)
header.add_filter('footer', 'text/html', '<strong>boo</strong>')set_filters
header = Smtpapi::Header.new
filter = {
'footer' => {
'setting' => {
'enable' => 1,
"text/plain" => 'You can haz footers!'
}
}
}
header.set_filters(filter)set_send_at
header = Smtpapi::Header.new
lt = Time.local(2014, 8, 29, 17, 56, 35)
header.set_send_at(lt)set_send_each_at
header = Smtpapi::Header.new
lt1 = Time.local(2014, 8, 29, 17, 56, 35)
lt2 = Time.local(2013, 12, 31, 0, 0, 0)
lt3 = Time.local(2015, 9, 1, 4, 5, 6)
header.set_send_each_at([lt1, lt2, lt3])Contributing
- Fork it ( http://github.com/sendgridjp/smtpapi-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Running Tests
The existing tests in the test directory can be run using test gem with the following command:
rake test