in reply to Simple Net::SMTP question
Having read the documentation and the relevant code I believe this to be a documentation defect.
You must not only pass a hash-like string but it must be in fact an actual hash.
Try changing your options to
my @recipients = $smtp->recipient('collin.starkweather@colorado.edu',' +joe@flugwumpet.com', { Notify => 1, SkipBad => 1 });
I think it will magically begin to work.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Simple Net::SMTP question
by Starky (Chaplain) on Aug 24, 2001 at 03:02 UTC | |
by Anonymous Monk on Aug 24, 2001 at 03:15 UTC |