W/O BCC the best thing is to recode the CGI script to send individual emails
to each recipient rather than sending them all at once.

For example, instead of:

my $to_everybody = '[EMAIL PROTECTED];[EMAIL PROTECTED];[EMAIL PROTECTED]';

my $result = &send_mail($from, $to_everybody, $subject, $message);

do something like

my $to_everybody = '[EMAIL PROTECTED];[EMAIL PROTECTED];[EMAIL PROTECTED]';

my @to_list = split(/;/, $to_everybody);

foreach my $to_individual (@to_list)
{       my $result = &send_mail($from, $to_individual, $subject, $message);
}


> -----Original Message-----
> From: Evan Platt [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, December 09, 2003 2:01 PM
> To: SpamAssassin
> Subject: Re: [SAtalk] OT Help: Mail form CGI script?
> 
> 
> 
> 
> --On Tuesday, December 09, 2003 9:32 PM +0000 Martin Radford
> <[EMAIL PROTECTED]> wrote:
> 
> > Use bcc instead?
> 
> Did I not mention this CGI I use doesn't support BCC? I guess not.. :)
> 
> Evan
> 
> 
> -------------------------------------------------------
> This SF.net email is sponsored by: IBM Linux Tutorials.
> Become an expert in LINUX or just sharpen your skills.  Sign 
> up for IBM's
> Free Linux Tutorials.  Learn everything from the bash shell 
> to sys admin.
> Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
> _______________________________________________
> Spamassassin-talk mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/spamassassin-talk
> 


-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to