├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── mmailer ├── lib ├── mmailer.rb └── mmailer │ ├── client.rb │ ├── commands.rb │ ├── config.rb │ ├── error_handling.rb │ ├── mail_helper.rb │ ├── providers.rb │ ├── server.rb │ ├── server_helper.rb │ ├── version.rb │ └── worker.rb ├── mmailer.gemspec └── spec └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/mmailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/bin/mmailer -------------------------------------------------------------------------------- /lib/mmailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer.rb -------------------------------------------------------------------------------- /lib/mmailer/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/client.rb -------------------------------------------------------------------------------- /lib/mmailer/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/commands.rb -------------------------------------------------------------------------------- /lib/mmailer/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/config.rb -------------------------------------------------------------------------------- /lib/mmailer/error_handling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/error_handling.rb -------------------------------------------------------------------------------- /lib/mmailer/mail_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/mail_helper.rb -------------------------------------------------------------------------------- /lib/mmailer/providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/providers.rb -------------------------------------------------------------------------------- /lib/mmailer/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/server.rb -------------------------------------------------------------------------------- /lib/mmailer/server_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/server_helper.rb -------------------------------------------------------------------------------- /lib/mmailer/version.rb: -------------------------------------------------------------------------------- 1 | module Mmailer 2 | VERSION = "0.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/mmailer/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/lib/mmailer/worker.rb -------------------------------------------------------------------------------- /mmailer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/mmailer.gemspec -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/mmailer/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------