MIME::LITE ... problems with Bcc
by Kristofer Wolff other posts by this author
Aug 29 2001 9:13AM messages near this date
view in the new Beta List Site
AW: MIME::LITE ... problems with Bcc
|
Upgrading to Activestate's latest build
$IN{from}= $from;
$IN{to}= shift(@sendto);
$IN{bcc}= join(" ;", @sendto);
[...]
$msg = MIME::Lite-> new(
From =>
"$IN{from}",
To => "$IN{to}",
Bcc => "$IN{bcc}",
Subject => "$IN{subject}",
Type
=> 'multipart/related' );
[...]
MIME::Lite-> send('sendmail', "/usr/lib/sendmail -t");
$msg-> send;
The TO is correct, but the Bcc dosn't come in !
any help out there ???
_______________________________________________
Perl-Win32-Web mailing list
Perl-Win32-Web@[...].com
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web
|