On 17.08.2001 00:05:02 Carl B . Constantine wrote:
> Is it possible to do batch emailing in mutt? Here's the scenario. I want
> to send the same messsage to a bunch of different people, but they have
> to go as individual messages (one to each user). I can't put all the
> users in the to: due to privacy issues.
For the dirty hack, you can put them all in the Bcc: and add your own address in
the To:. Or, much better yet: Setup a mailing list.
> individuals. I don't want to use the bcc: field in case of spam filters
Oh :) Hmm, in this case, I'd use mutt as a better mailx, like so:
echo "Bye, bye baby.... :)" | mutt -s "Your fired" [EMAIL PROTECTED]
Combined with a for loop this will be quite easy:
for LUSER in [EMAIL PROTECTED] [EMAIL PROTECTED] do;
echo "Bye, bye baby.... :)" | mutt -s "Your fired" $LUSER
done
Or, if you've got all the unfortunate peoples email address in a simple text
file, you might do:
cat luser-text-file | while read LUSER; do
echo "Bye, bye baby.... :)" | mutt -s "Your fired" $LUSER
done