Hi all, I''m a little bit confused with things ... hope someone can help me out. I''m trying to do something very simple. 1. Create an email using Tmail 2. Then put cc, bcc 3. Send out using Net::SMTP Problem is that it is not Cc-ing or Bcc-ing at all. Can someone look at this and let me know what''s happening I''m running this from the command line via script/runner require ''tmail'' require ''net/smtp'' mail = TMail::Mail.new mail.cc = [''myccaddress-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org''] mail.to = [''mytoaddress-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org''] mail.subject = "Hey" mail.body = "Somehow this is not cc-ing at all!!" Net::SMTP.start(''mail.mydomainname.com'', 25) do |smtp| smtp.send_mail(mail.to_s, ''from-MhOowqdQP7U1vGYhLu/DSQC/G2K4zDHf@public.gmane.org'',mytoddress-q89RzV0OsXQ@public.gmane.org'') end --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---