I got this code off the website below. I wanted to run and watch the
example then create code with the ruport gem. On the website, the user
never got an answer on why he is getting the error "uninitialized
constant Ruport::Report (NameError)". I would like for this to work for
me but when I tried to check it out by running it after installing the
ruport gem, I also got that error. Does anyone know how to fix this? I
do get this error now and then but have never understood why it happens.
Thanks
MC
http://www.phwinfo.com/forum/comp-lang-ruby/356308-send-email-ruby.html
#! /usr/bin/ruby
require 'ruport'
r = Ruport::Report.new
r.add_mailer :default,
:host => "my.smtp.host",
:address => "my@adress"
r.send_to('send.to@mail') do |mail|
mail.subject = "Subject"
Dir["*.tif"].each { | cName | mail.attach(cName) }
mail.text = "Body text"
end
···
--
Posted via http://www.ruby-forum.com/.