home *** CD-ROM | disk | FTP | other *** search
/ The Elite Hackers Toolkit / TheEliteHackersToolkitVolume1_1998.rar / HACKERS.BIN / appcraks / DSI_CGIE.ZIP / SAVE.BAT < prev    next >
DOS Batch File  |  1998-02-05  |  470b  |  26 lines

  1. @echo off
  2. type %1 >> ..\demo\complex\file.dat
  3. if errorlevel 1 goto cantsave
  4.  
  5. if %2==YES goto mail
  6. echo Information is saved.
  7. EXIT
  8.  
  9. :mail
  10. if %3==dummy goto noaddress
  11. gbmail -file %1 -h smtp.server.com -from you@yourmail.com -to %3 -s "Saved data"
  12. if errorlevel 1 goto cantmail
  13. echo Information is saved.
  14. EXIT
  15.  
  16. :cantsave
  17. echo Failed to save data.
  18. EXIT
  19.  
  20. :cantmail
  21. echo Failed to send mail.
  22. EXIT
  23.  
  24. :noaddress
  25. echo No e-mail address is specified.
  26. EXIT