├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ └── images │ │ └── maily │ │ ├── icons │ │ ├── globe.svg │ │ └── paperclip.svg │ │ └── logo.png ├── controllers │ └── maily │ │ ├── application_controller.rb │ │ └── emails_controller.rb ├── helpers │ └── maily │ │ ├── application_helper.rb │ │ └── emails_helper.rb └── views │ ├── layouts │ └── maily │ │ └── application.html.erb │ └── maily │ ├── emails │ ├── edit.html.erb │ ├── index.html.erb │ └── show.html.erb │ └── shared │ ├── _flash_messages.html.erb │ ├── _footer.html.erb │ ├── _header.html.erb │ ├── _javascript.html.erb │ ├── _sidebar.html.erb │ └── _stylesheet.html.erb ├── config └── routes.rb ├── gemfiles ├── rails_5.2.gemfile ├── rails_6.0.gemfile ├── rails_6.1.gemfile ├── rails_7.0.gemfile └── rails_7.1.gemfile ├── lib ├── generators │ ├── maily │ │ └── install_generator.rb │ └── templates │ │ └── initializer.rb ├── maily.rb └── maily │ ├── email.rb │ ├── engine.rb │ ├── generator.rb │ ├── mailer.rb │ └── version.rb ├── maily.gemspec ├── spec ├── controllers_spec.rb ├── dummy │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ └── application_controller.rb │ │ ├── mailers │ │ │ ├── application_mailer.rb │ │ │ └── notifier.rb │ │ └── views │ │ │ ├── notifications │ │ │ └── custom_template_path.html.erb │ │ │ └── notifier │ │ │ ├── custom_template.html.erb │ │ │ ├── multipart.html.erb │ │ │ ├── multipart.text.erb │ │ │ ├── no_arguments.html.erb │ │ │ ├── only_text.text.erb │ │ │ ├── version.html.erb │ │ │ ├── with_arguments.html.erb │ │ │ ├── with_array_arguments.html.erb │ │ │ ├── with_description.html.erb │ │ │ ├── with_inline_attachments.html.erb │ │ │ ├── with_params.html.erb │ │ │ └── with_slim_template.html.slim │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ └── rake │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── backtrace_silencers.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── maily.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ └── routes.rb │ ├── lib │ │ └── maily_hooks.rb │ ├── log │ │ └── .keep │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── favicon.ico ├── email_spec.rb ├── generator_spec.rb ├── mailer_spec.rb ├── maily_spec.rb └── spec_helper.rb └── support └── images ├── logo.png └── screenshot.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/maily/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/assets/images/maily/icons/globe.svg -------------------------------------------------------------------------------- /app/assets/images/maily/icons/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/assets/images/maily/icons/paperclip.svg -------------------------------------------------------------------------------- /app/assets/images/maily/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/assets/images/maily/logo.png -------------------------------------------------------------------------------- /app/controllers/maily/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/controllers/maily/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/maily/emails_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/controllers/maily/emails_controller.rb -------------------------------------------------------------------------------- /app/helpers/maily/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/helpers/maily/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/maily/emails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/helpers/maily/emails_helper.rb -------------------------------------------------------------------------------- /app/views/layouts/maily/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/layouts/maily/application.html.erb -------------------------------------------------------------------------------- /app/views/maily/emails/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/emails/edit.html.erb -------------------------------------------------------------------------------- /app/views/maily/emails/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/emails/index.html.erb -------------------------------------------------------------------------------- /app/views/maily/emails/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/emails/show.html.erb -------------------------------------------------------------------------------- /app/views/maily/shared/_flash_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/shared/_flash_messages.html.erb -------------------------------------------------------------------------------- /app/views/maily/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/maily/shared/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/shared/_header.html.erb -------------------------------------------------------------------------------- /app/views/maily/shared/_javascript.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/shared/_javascript.html.erb -------------------------------------------------------------------------------- /app/views/maily/shared/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/shared/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/maily/shared/_stylesheet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/app/views/maily/shared/_stylesheet.html.erb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/config/routes.rb -------------------------------------------------------------------------------- /gemfiles/rails_5.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/gemfiles/rails_5.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/gemfiles/rails_6.0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/gemfiles/rails_6.1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/gemfiles/rails_7.0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/gemfiles/rails_7.1.gemfile -------------------------------------------------------------------------------- /lib/generators/maily/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/generators/maily/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/templates/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/generators/templates/initializer.rb -------------------------------------------------------------------------------- /lib/maily.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/maily.rb -------------------------------------------------------------------------------- /lib/maily/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/maily/email.rb -------------------------------------------------------------------------------- /lib/maily/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/maily/engine.rb -------------------------------------------------------------------------------- /lib/maily/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/maily/generator.rb -------------------------------------------------------------------------------- /lib/maily/mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/lib/maily/mailer.rb -------------------------------------------------------------------------------- /lib/maily/version.rb: -------------------------------------------------------------------------------- 1 | module Maily 2 | VERSION = "2.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /maily.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/maily.gemspec -------------------------------------------------------------------------------- /spec/controllers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/spec/controllers_spec.rb -------------------------------------------------------------------------------- /spec/dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/spec/dummy/README.md -------------------------------------------------------------------------------- /spec/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/spec/dummy/Rakefile -------------------------------------------------------------------------------- /spec/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/spec/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/spec/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /spec/dummy/app/mailers/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markets/maily/HEAD/spec/dummy/app/mailers/notifier.rb -------------------------------------------------------------------------------- /spec/dummy/app/views/notifications/custom_template_path.html.erb: -------------------------------------------------------------------------------- 1 |