# encoding: utf-8
require "mail"
mail = Mail.new do
from "hogelog@hogel.org"
to "konbu.komuro@gmail.com, hogelog@hogel.org"
subject "Hello"
body "Hello, this is a pen."
end
mail.delivery_method :sendmail
mail.deliver!
のようにto
に,
区切りで複数のメールアドレスをいれればOK。
to %w(konbu.komuro@gmail.com hogelog@hogel.org)
のようにArray
にして渡しても良い。