At 02:17 PM 5/21/01 -0500, Stussie, Mike wrote:
>I am trying to send an email to users based on a list of emails that have
>been read into an array. The array contains about 600 records but it abends
>at around 200.

Woo, I'll answer someone who knows what ABEND means :-)

Your script is producing output that violates the HTTP protocol.  Rather 
than a whole song and dance about this (which takes about a chapter - I 
know, there's a chapter on it in my book :-)  just put this into your 
script after the #! line:

BEGIN { $| = 1; print "Content-type: text/plain\n\n" }

and the next time you run it you should see the reason.
--
Peter Scott
Pacific Systems Design Technologies
http://www.perldebugged.com

Reply via email to