[Date Prev][Date
Next][Thread Prev][Thread Next][Date
Index][Thread Index]
RE: Re: Text messaging from web url
If you use HomeSeer and have the email stuff set up, you could have an
event
for "Email reception" check for a specific keyword in the
subject, then parse
out the body of the message and pass it to the script I posted earlier.
Assuming the message criteria was:
Subject = "Send SMS"
Email body = "Number to send to#message to send"
'***********************************************
sub main()
dim index, subject, mailtext, recipient, details, message
index = hs.MailTrigger
subject = hs.MailSubject(index)
If Subject <> "Send SMS" Then Exit Sub
mailtext = hs.MailText(index)
details = split(mailtext,"#")
recipient = details(0)
message = details(1)
hs.RunEx "sms.txt","sms",recipient & ","
& message
end sub
'*******************************************
I can't actually try any of this out but it should give you something to go
on.
Justin.
Quoting aashram <groups@xxxxxxx>:
> Justin would it be easy enough to use the activex to
> monitor a email account so i can
> send sms via email ?
>
> -----Original Message-----
> From: kinchyuk [mailto:alex@xxxxxxx]
> Sent: Wed 02/07/2003 11:12
> To: ukha_d@xxxxxxx
> Cc:
> Subject: [ukha_d] Re: Text messaging from web url
>
>
>
>
> Justin,
>
> If you fancy modifying your app to interface to the sendmytxt http
> sending app (see my previous email) I'll be happy to put some free
> credits on your account. I've got HomeSeer too so can test it from
> this end.
>
> Alex
>
> --- In ukha_d@xxxxxxx, Justin <justin@g...> wrote:
> > Paul,
> >
> > have you seen my old Nokia, PAYG SIM, HomeSeer, solution?
> >
> > http://tinyurl.com/ftdi
> >
> > Certainly more reliable than some of the online offerings, 2 way
> SMS and it is
> > cheaper than a GSM modem.
> > Additionally, using my HS Commander plugin, it is possible to
have
> other
> > machines on a LAN send text messages as well.
> >
> > I chose this route as:
> >
> > I can send and receive text messages, even if net connection is
> down.
> >
> > Notification of power failure as HA PC is on UPS (which talks to
> HomeSeer) and
> > the phone obviously has a battery.
> >
> > Burglar alarm notification, even if power and phone lines are
out.
> >
> >
> > Justin.
Home |
Main Index |
Thread Index
|