
davorg
Thaumaturge
/ Moderator
Jan 8, 2007, 7:47 AM
Post #3 of 3
(378 views)
|
|
Re: [alabbe] Problem sendign SMTP to multiple addresses.
[In reply to]
|
Can't Post
|
|
$smtp->to('to@somehost.com, to_Second@somehost.com'); # recipient's address According to Net::SMTP's documentation that should be:
$smtp->to('to@somehost.com', 'to_Second@somehost.com'); # recipient's address (i.e. Each address is sent as a separate string.) -- Dave Cross, Perl Hacker, Trainer and Writer http://www.dave.org.uk/ Get more help at Perl Monks
|