Project

rubymail

0.0
No release in over a year
ruby mail framework
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 2
 Project Readme

rubymail

Ruby mailing framework

Installation:

$ gem install rubymail

Tutorial:

  • config:
Rubymail.configure do |config|
  config.api_key = 'your-api-key'
  config.domain  = 'your-rubymail-domain'
end

@rubymail = Rubymail()

@rubymail = Rubymail(:api_key => 'your-api-key')
  • sending email:
parameters = {
  :to => "cooldev@your.rubymail.domain",
  :subject => "missing tps reports",
  :text => "test....",
  :from => "lumberg.bill@initech.rubymail.domain"
}
@rubymail.messages.send_email(parameters)