It has no GUI, but Nadav's
http://nadav.harel.org.il/software/sendsms/sendsms
still works well with Orange (not with Cellcom/Pelephone).
If a GUI is a must, you may improve on the following hack (written only because
I'm at home having fun with the flu)
===========================
#!/usr/bin/wish
button .send -text "Send SMS" -command {
puts stdout "$phone $sender $message";
exec ~/bin/sendsms "$phone" "$sender" "$message";
}
label .phonel -text "Phone:"
entry .phone -textvariable phone
label .senderl -text "Sender name:"
entry .sender -textvariable sender
label .messagel -text "Message:"
entry .message -textvariable message
pack .phonel .phone .senderl .sender .messagel .message .send
On Sun, Nov 19, 2006 at 02:00:34PM +0200, Amichai Rotman wrote:
> Hi all,
>
> I need so GUI solution to send messages inside the Orange network.
>
> It dosn't have to be in Hebrew.
>
> I am at work every day from 08:00 to 17:00 and my wife is at home. As you
> know, we can't use Orange's SMS sending page - dosn't work with Firefox...
>
> Any other solution? She is tired of SMSing from the phone, so she calls me
> voice...
>
> Thanks!
>
> --
=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]