marcblevins: Thank you for your response.
And thanks for your modified command - its output is certainly much more succinct than mine and I'll be sure to use it once I've figured the rest out. You will note that I do use ifconfig in my script, however I am also collecting more verbose output such as hostname, date, etc.
However, I am still stuck with the same problem that I stated before. When ifconfig is called from rc.local during the startup process, its output does not contain the IP address at all. Your command, which of course works just fine from the command prompt, yields an empty string when called through rc.local.
Here is the full output from "ifconfig eth0" when called from my script .SendIP.bash, which is called at the end of rc.local during startup:
eth0 Link encap:Ethernet HWaddr 00:13:72:A0:76:6B
inet6 addr: fe80::213:72ff:fea0:766b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:16
Here is the output from "ifconfig eth0" when called from the command prompt (sorry, I thought it best to mask out the actual IP numbers as [IP]):
eth0 Link encap:Ethernet HWaddr 00:18:8B:1F

E:04
inet addr:[IP] Bcast:[IP] Mask:255.255.255.128
inet6 addr: fe80::218:8bff:fe1f:ce04/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1993 errors:0 dropped:0 overruns:0 frame:0
TX packets:1834 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:706712 (690.1 KiB) TX bytes:257756 (251.7 KiB)
Interrupt:16
As you can see the latter case contains the IP address as well as the "inet addr" string that you search on in your command. The former case does not have this line.
I would certainly appreciate some suggestions from you and/or others on where and when to call my script during the startup process so that the IP address has been assigned and will be available through the ifconfig command (or any other command) to be e-mailed to me.
Thanks again for your help.