Hi all,
I’m a little bit confused with things … hope someone can help me
out.
I’m trying to do something very simple.
- Create an email using Tmail
- Then put cc, bcc
- 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 = [‘[email protected]’]
mail.to = [‘[email protected]’]
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,
‘[email protected]’,[email protected]’)
end