home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / rxnew11a.zip / rxnewsml.cmd < prev    next >
OS/2 REXX Batch file  |  1993-04-25  |  262b  |  8 lines

  1. /* This is the RexxNews Mail program - this rexx command uses sendmail
  2.    to send a mail message out and then erases the file when it's finished.
  3. */
  4. parse arg tempfile sender recipient
  5. "sendmail -af "tempfile "-f" sender recipient
  6. "erase "tempfile
  7. "exit"
  8.