0.0
No commit activity in last 3 years
No release in over 3 years
Mail sending for aerogel applications
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

aerogel-mailer

A mail delivery module for aerogel applications.

Usage

# config.ru
require 'aerogel/core'
require 'aerogel/mailer'

run Aerogel::Application.load
# app/mailers/my-test-mailer.rb
# define mailer:
class Aerogel::Application
    mailer :test do |f, t|
      from f
      to t
      subject 'test'
      body 'hello'
    end
end
# app/routes/my-test-route.rb
# send mail from route handler:
class Aerogel::Application
    get "/test-mail" do
        email :test, 'from@domain.org', 'to@another.org'
    end
end