in reply to Re: Re: Sending HTML-formatted mail to a list
in thread Sending HTML-formatted mail to a list

Chady underestimates his grasp of the problem. Yes, the second and third emails are getting lost in some sort of HTML-mail muddle as useless additions to the body of the first email. You must close and re-open the sendmail pipe to send subsequent emails.

Or include all three addresses on the "To:" line and send them all at once.

------------------------------------------------------------
"Perl is a mess and that's good because the
problem space is also a mess.
" - Larry Wall

  • Comment on Re: Re: Re: Sending HTML-formatted mail to a list

Replies are listed 'Best First'.
Re: Re: Re: Re: Sending HTML-formatted mail to a list
by abully (Novice) on Dec 17, 2001 at 11:45 UTC
    Thanks--you totally helped me. After cleaning up the syntax, I did a test to find a single element in the array:
    foreach $address (@address) { print "$address\n"; }
    From this, I found that $address is all of my addresses in the test file (three entrys). So it thinks that all three addresses correspond to one array element!