0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
simple-mailer
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

simple-mailer¶ ↑

require 'rubygems'
require 'lib/simple-mailer'

body =<<END
Hi,

How are you doing?

--
hoge
END

SimpleMailer::SMTP.new(:host => 'localhost', :port => 25) do |smtp|
  smtp.message(:encoding => 'iso-2022-jp') do |msg|
    msg.from 'hoge@example.com'
    msg.to 'foo@example.com', 'Foo'
    msg.to 'bar@example.com'
    msg.subject 'Hello'
    msg.body body
  end
end