augustl (owner)

Revisions

gist: 17755 Download_button fork
public
Public Clone URL: git://gist.github.com/17755.git
Embed All Files: show embed
mailer.rb #
1
2
3
4
5
6
7
8
9
10
11
# Requires /usr/sbin/sendmail (e.g. postfix)
module Mailer
  def self.deliver(to, subject, body)
    IO.popen("/usr/sbin/sendmail #{to}", 'w+') do |sendmail|
      sendmail.puts "Subject: #{subject}"
      sendmail.puts "From: Your Name <foo@yourname.com>"
      sendmail.puts "To: #{to}"
      sendmail.puts body
    end
  end
end