in reply to As for sending more than one contact using perl TLS gmail
Is this an answer that should have been in some previous thread or did you just forget to ask a question?
If your question is "why is this script not working", without having tested it I would guess that
$smtp->to("some1@gmail.com\n", "some2@gmail.com\n");
should work better if written like this:
$smtp->to("some1\@gmail.com", "some2\@gmail.com");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: As for sending more than one contact using perl TLS gmail
by L1nuxer (Initiate) on Jan 28, 2011 at 22:01 UTC | |
by jethro (Monsignor) on Jan 28, 2011 at 23:18 UTC |