in reply to Problems using Mail::Sender
You also need to check the OpenMultipart call for errors.my $sender; unless(ref($sender = new Mail::Sender { 'smtp' => $mail_server, 'from' => $id, 'auth' => 'CRAM-MD5', 'authid' => $id, 'authpwd' => $pswd, 'subject' => 'Birthday invitation', 'boundary' => 'A boring Multipart bou +ndary', 'multipart' => 'mixed', 'encoding' => 'Quoted-printable', 'confirm' => 'reading', 'keepconnection' => 'true'})) { die "Creating obejct failed: $Mail::Sender::Error\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Problems using Mail::Sender
by Jenda (Abbot) on Aug 22, 2003 at 18:40 UTC | |
|
Re: Re: Problems using Mail::Sender
by CombatSquirrel (Hermit) on Aug 22, 2003 at 17:15 UTC |