
Archive Name: sendip.zip v. 2.1
Program Description: REXX! Use email to distribute your dynamic IP
Operating System/Version: OS/2 Ver. 2.1 or later

Short description:


This REXX script allows you to distribute your dynamic IP via email
to your work or school. This allows you to run an auto-dialer on your
system and have access to it regardless of the assigned IP. Requires
hostname.exe, ping.exe, and sendmail.exe. All are included in OS/2's
TCP/IP support.

Installation:
Use a simple text editor such as e.exe or epm.exe and open sendip.cmd.
Locate the user-provided areas and enter your information. Examples of the
affected lines are shown here. All the affected lines are near the top of
the sendip.cmd file:

Comments = "http://www.visit_me.edu"
TZ = "PST8PDT"
From = "your_name@domain.com (First Last)" || CRLF
Reply_to = "your_name@domain.com (First Last)" || CRLF
To = "some_name@some_domain.com" || CRLF
CC = "another_name@some_domain.com" /* do not add CRLF to this line */
Subject = "Today's New IP" || CRLF || CRLF

Specific hints are given in the executable. Comments may span multiple lines
by using the REXX line continuation technique:
Comments = "http://www.visit_me.com" || CRLF ||,
           "This is the gnarliest Web site in the world!"
