home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / unix / question / 14848 next >
Encoding:
Text File  |  1992-12-21  |  1.2 KB  |  45 lines

  1. Newsgroups: comp.unix.questions
  2. Path: sparky!uunet!caen!nic.umass.edu!news.amherst.edu!rjyanco
  3. From: rjyanco@unix.amherst.edu (Richard J. Yanco)
  4. Subject: Mailing to multiple people without each person seeing a list of all
  5. Message-ID: <BzLLLo.KxF@unix.amherst.edu>
  6. Keywords: elm, mail
  7. Organization: Amherst College, Amherst MA
  8. Date: Mon, 21 Dec 1992 07:17:48 GMT
  9. Lines: 34
  10.  
  11. I send a daily mailing out to approximately 10 people from my account.
  12. If I have the names in a file foo.bar, is there any way to send a message
  13. to each person in the list, *independently*, with a single command?
  14.  
  15. One option is obviously to
  16.  
  17.   mv foo.bar .forward
  18.  
  19. and mail myself.  But this is no good; mail might come in, and get bounced
  20. where I don't want it.
  21.  
  22. Another option suggested to me was
  23.  
  24.   elm -s "Subj" `cat foo.bar` <message
  25.  
  26. but every individual recipient gets a list of all recipients, which
  27. is not what I want.  I'd like the equivalent of
  28.  
  29.   elm -s "Subj" harry@some.place.edu <message
  30.   elm -s "Subj" bob@another.place.edu <message
  31.      ...
  32.   elm -s "Subj" jane@final.place.edu <message
  33.  
  34. rather than
  35.  
  36.   elm -s "Subj" harry@s.p.e bob@a.p.e ... jane@f.p.e <message
  37.  
  38.  
  39.  
  40. Is there any easy way to do this?
  41.  
  42. (Email preferred.)
  43.  
  44. Thanks-
  45.