@echo off REM Program Name: SENDTO.BAT REM You should run this program in DOS shell while running Bobcat/Lynx if "%1" == "" goto HELP if "%1" == "/?" goto HELP if "%1" == "?" goto HELP if "%1" == "/H" goto HELP if "%1" == "/h" goto HELP echo "%1" > mailout.htm echo. echo MAILOUT.HTM, addressed to "%1" was created echo. echo Press any key to return to HOME pause > nul goto END1 :HELP echo. echo Usage: echo. echo This program is used to create a mailout template echo. echo Syntax example: sendto username@isp.com echo. echo This will create a file named MAILOUT.HTM echo This is a useful step in preparing to send an email from Bobcat/Lynx echo. goto END2 :END1 exit :END2