spx2 has asked for the wisdom of the Perl Monks concerning the following question:
i'm trying to use Mail::Bulkmail::Dynamic i've tried the following code,
use strict; use warnings; use Mail::Bulkmail::Dynamic; my $bulk = Mail::Bulkmail::Dynamic->new( "merge_keys" => [qw(BULK_EMAIL <name>)], "merge_delimiter" => "::", "From" => "'Jim Thomason'<jim\@jimandkoka +.com>", LIST => [qw(stefan.petrea@gmail.com::Stefan)], "Subject" => "This is a test message", "Message" => "your email is BULK_EMAIL and y +our name is <name>" ) || die Mail::Bulkmail->error(); $bulk->bulkmail() || die $bulk->error;
and i'm getting the error :
No servers at /home/stefan/playground/test_mail_bulkmail_dynamic/tst2.pl line 36.what can i do about this ? I can't figgure out the error but it seems the error does appear in http://search.cpan.org/~jimt/Mail-Bulkmail-3.12/Bulkmail.pm at METHODS section , the method nextServer features this error
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mail::Bulkmail::Dynamic error
by Corion (Patriarch) on Jul 11, 2007 at 08:28 UTC |