Please consider the following code snippet:
msg = <<EOS
···
From: <anaddress>
To: <anotheraddress>
Subject: A Test Message
This is a test message.
EOS
Net::SMTP.start(<servername>, 26, <server>, <username>, <passwd>,
:plain) do |smtp|
smtp.send_message(msg, <fromaddress>, ['to1@server.com',
'to2@server.com'])
end
If I execute this, only one of the two recipients will get a copy of the
message. No errors are seen, but the second address just gets discarded.
I'm pretty sure it's not the server playing games as a similar action in
the python equivalent works cleanly.
Could someone offer some help?
Thanks much
---Michael
--
Posted via http://www.ruby-forum.com/.