Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
- Message.txt the message you wish to send
- ToList the list of email addresses you want to
send to, one per line, left justified
- SendEm.Bas a QuickBASIC program that can be easily
redone in any BASIC, or application BASIC
support, Active-X, and so forth.
@echo off
c:
cd \messages
start /w notpad Message.Txt
qbasic /r sendem
DECLARE SUB waitsecs (secs!)
eudora$ =
' Space at end! ! !
SHELL eudora$: waitsecs 3
OPEN
FOR INPUT AS #1
DO WHILE NOT EOF(1)
LINE INPUT #1, a$: a$ = rtrim$(ltrim$(a$))
OPEN "HEADER" FOR OUTPUT AS #2
PRINT #2, "To: "; a$
PRINT #2,
CLOSE 2
SHELL "COPY header + message.txt message.msg > nul:"
waitsecs 1
SHELL eudora$ + curdir$ + "\message.msg":
PRINT "Sent to "; a$
LOOP
CLOSE
kill "header"
SYSTEM
SUB waitsecs (secs)
oldtim$ = TIME$
FOR i = 1 TO secs
WHILE TIME$ = oldtime$: WEND
oldtime$ = TIME$
NEXT
END SUB
j@roninsg.com
gw@whitehouse.gov
BillGates@dorsalOrifice.com
support@tek-tips.com, info@tek-tips.com, sales@tektips.com
. . .
PRINT #2, "From "; myname$
PRINT #2, "Subject: "; theSubject$
PRINT #2, "X-Attachments: c:\autoexec.bat, c:\config.sys"