Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-12 Thread Andrew Cowles
You can send an SMS via kapow easily using PHP.
Here are a few examples of how you can send (via HTTP Get/Post  email).
assuming you have defined a couple of variables;
$user = youruser;
$pass = yourpass;
$mob = 447971325173;
$message = urlencode(This is just a test SMS message from kapow.co.uk);
You can send the message via HTTP Get using the fopen() function, like this;
fopen(http://www.kapow.co.uk/scripts/sendsms.php?username=$userpassword=$passmobile=$mobsms=$message,r;)
That's it... your message will be on it's way (and should arrive within 
about 10 seconds).

Alternatively you could send via email by using the mail() function;
mail([EMAIL PROTECTED],$message,$user\n$pass);
If you have set-up your account to automatically trust your sending address 
then you don't need to include the user/pass details in the email, so it'd 
work with just;

mail([EMAIL PROTECTED],$message,);
You can also make an HTTP Post. The best way to do this is by writing a 
quick HTTP Post function using sockets... you should be able to find an 
example on this mailing list. If not then I'll happily send you one.

Best regards,
Andy
Andrew Cowles

KAPOW! SMS Communication Solutions
WEB: http://www.kapow.co.uk/
EMAIL: [EMAIL PROTECTED]
TEL: 0870 757 1610 or FAX: 0870 757 1615

Cygnet Internet Services Ltd ( http://www.cygnet.co.uk/ )

Thanks. Your SMS service looks ideal for what I need but how do I make an
HTTP request from PHP to kapow?
Can I just use fopen()?
Please can you give a PHP example.
We operate an SMS Gateway service (http://www.kapow.co.uk/) which would 
do
exactly what you need.
It's been reliably sending SMS since 1995 - and MANY of our clients use
PHP.
What you'd probably want to do is make an HTTP Get / Post request 
directly
from your script to our servers, alternatively you can use our
Email-to-SMS
interface and then just generate an email.
Using either method with PHP should get you up and running in a few
minutes.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-11 Thread Andrew Cowles
Hi Jordi,

What's wrong with British Pounds? It's a good currency - been around for a
long time.
We have customers all over the world and can send SMS messages to over 500
networks in 200+ countries.
We have MANY clients in the USA, across Europe, Australia  Africa.
However we are based in the UK; which means our prices are in pounds... but
you can pay using most major credit cards, so it shouldn't be a big problem.
There is a good currency converter at http://www.xe.com/ if you need it, or
I'm sure our Sales staff will happily give you the current rates.
Best regards,

Andy

Andrew Cowles

KAPOW! SMS Communication Solutions
WEB: http://www.kapow.co.uk/
EMAIL: [EMAIL PROTECTED]
TEL: 0870 757 1610 or FAX: 0870 757 1615

Cygnet Internet Services Ltd ( http://www.cygnet.co.uk/ )


 Unfoturnately your price list is only in pounds: No Euros, No Dollars
 :( It Looks like you only accept British Customers.

 Regards,
 Jordi.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-11 Thread Sagar C Nannapaneni
You can use SMSTERM

/sagar
- Original Message -
From: SunTan.co.uk [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 10, 2004 7:38 PM
Subject: [PHP] sending SMS messages to mobile phones from PHP


 Hi there,

 I want my website to be able to send me an SMS message to my phone when
 somebody fills our contact form in.
 Does anybody do this already? If so, how?
 I think that I need an SMS service but I'm not sure what one is or how
much
 it'll cost us.
 Please advise.

 [EMAIL PROTECTED]


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-11 Thread Jad Madi
-
User8 is [EMAIL PROTECTED] * [EMAIL PROTECTED]
User8 using arcor.de.eu.dal.net www.arcor.de - Arcor Online Serv


On Mon, 11 Oct 2004 23:34:18 +0530, Sagar C Nannapaneni
[EMAIL PROTECTED] wrote:
 You can use SMSTERM
 
 /sagar
 
 
 - Original Message -
 From: SunTan.co.uk [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, October 10, 2004 7:38 PM
 Subject: [PHP] sending SMS messages to mobile phones from PHP
 
  Hi there,
 
  I want my website to be able to send me an SMS message to my phone when
  somebody fills our contact form in.
  Does anybody do this already? If so, how?
  I think that I need an SMS service but I'm not sure what one is or how
 much
  it'll cost us.
  Please advise.
 
  [EMAIL PROTECTED]
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
http://www.W3planet.info/
http://www.EasyHTTP.com/jad/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-11 Thread Jordi Canals
On Sun, 10 Oct 2004 15:23:54 +0100, Andrew Cowles
[EMAIL PROTECTED] wrote:

 We operate an SMS Gateway service (http://www.kapow.co.uk/) which would do
 exactly what you need.
 It's been reliably sending SMS since 1995 - and MANY of our clients use PHP.

Unfoturnately your price list is only in pounds: No Euros, No Dollars
:( It Looks like you only accept British Customers.

Regards,
Jordi.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-10 Thread SunTan.co.uk
Thanks. Your SMS service looks ideal for what I need but how do I make an
HTTP request from PHP to kapow?
Can I just use fopen()?
Please can you give a PHP example.

 We operate an SMS Gateway service (http://www.kapow.co.uk/) which would do
 exactly what you need.
 It's been reliably sending SMS since 1995 - and MANY of our clients use
PHP.

 What you'd probably want to do is make an HTTP Get / Post request directly
 from your script to our servers, alternatively you can use our
Email-to-SMS
 interface and then just generate an email.

 Using either method with PHP should get you up and running in a few
minutes.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Sending SMS messages ?

2003-09-12 Thread Louie Miranda
Hi Dave,

Yes php can, but what application will you connect to?
On my old work we develop php and c programs to do it. Although the main
client that connects is on C/Unix but when the people wanted to send
messages we do it on php then web to c then c program to smsc server.

-
Louie

- Original Message -
From: Dave Carrera [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 12, 2003 4:06 PM
Subject: [PHP] Sending SMS messages ?


Hi All

Is there a way to send sms messages via php.

I really dont know anything about this so any info,pointers or resources
will be very much appreciated.

Thank you in advance for any help.

Dave C

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.516 / Virus Database: 313 - Release Date: 01/09/2003


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Sending SMS messages ?

2003-09-12 Thread Raditha Dissanayake
Hi,
Goto http://kannel.org and download their sources. They have some sample 
PHP scripts to send sms. Obviously you will need a GSM modem or access 
to an SMSC to make full use of it.

all the best.

Dave Carrera wrote:

Hi All

Is there a way to send sms messages via php.

I really dont know anything about this so any info,pointers or resources
will be very much appreciated.
Thank you in advance for any help.

Dave C

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.516 / Virus Database: 313 - Release Date: 01/09/2003
 



--
http://www.radinks.com/upload
Drag and Drop File Uploader.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] sending SMS messages via PHP

2001-03-12 Thread Steven WC

Hi,

This may soon depend on what Cellco you are sending from/to in the UK. They
used to pass on messages between themselves for no cost but I understand
that they are going to change over to charging each other per message. This
may effect their own free email gateways but it certainly will effect the
'independent' ones.

If you want to use an SMSC to do this rather than via an email gateway, and
you don't want to set up a link to a real SMSC, you could always use a
mobile phone with an 'AT' modem interface (eg, Nokia 7110, 6210) or a GSM
modem (a bit more expensive but dedicated to the task) as a virtual SMSC and
link the software into that to send the SMS messages for you. There are a
few SMS gateways around that will do that - quite a few are free. One
example is 'Kannel' - its a WAP and SMS gateway. A nice thing about that one
is that you can recieve SMS messages and have them be processed via PHP
scripts - to process, respond etc.


""Valter Santos"" [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
Hi!

Instead of send a direct SMS to a SMSCenter you can send the
message as an standard email... Many Cellcos allow that, and it
will be cheaper to you (no cost!!!)

Here in Portugal we can do it... we just use the MSISDN (phone number)
from who we want to send and sms and append the cellco mail server...

As an example, to send a SMS to me, you can send a email to

[EMAIL PROTECTED]

this, probably will work... the mail user alias is my phone number and
the server domain is the Cellco' mail server
~

hope this help


Valter Santos
WEB/WAP Consultant

Email : [EMAIL PROTECTED]
Mobile: +351 93 9650075

WeDo Consulting - http://www.wedo.pt



 -Original Message-
 From: Michael Smith [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, March 07, 2001 5:00 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] sending SMS messages via PHP


 I can easily send standard email messages via PHP. Does anyone know how to
 send SMS messages?

 --
 Michael A. Smith [EMAIL PROTECTED]
 Director of Data Systems, wcities.com
 ICQ: 35884415
 :wq

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] sending SMS messages via PHP

2001-03-10 Thread Valter Santos

Hi!

Instead of send a direct SMS to a SMSCenter you can send the
message as an standard email... Many Cellcos allow that, and it
will be cheaper to you (no cost!!!)

Here in Portugal we can do it... we just use the MSISDN (phone number)
from who we want to send and sms and append the cellco mail server...

As an example, to send a SMS to me, you can send a email to

[EMAIL PROTECTED]

this, probably will work... the mail user alias is my phone number and
the server domain is the Cellco' mail server
~

hope this help


Valter Santos
WEB/WAP Consultant

Email : [EMAIL PROTECTED]
Mobile: +351 93 9650075

WeDo Consulting - http://www.wedo.pt



 -Original Message-
 From: Michael Smith [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, March 07, 2001 5:00 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] sending SMS messages via PHP
 
 
 I can easily send standard email messages via PHP. Does anyone know how to
 send SMS messages?
 
 --
 Michael A. Smith [EMAIL PROTECTED]
 Director of Data Systems, wcities.com
 ICQ: 35884415
 :wq
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] sending SMS messages via PHP

2001-03-09 Thread Simon Ould

Have you tried www.deltica.com ?

I haven't used them myself but am planning to in the near future - as soon
as I get the site finished.
You buy messages in blocks:
100 msgs 8.00 
1,000 msgs 70.00 
10,000 msgs 500.00 

They also have a trial service where you get 4 free messages.
You don't appear to be able to receive text messages.

Regards

Simon.

 -Original Message-
 From: Greig, Euan [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 09, 2001 09:24
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: [PHP] RE: sending SMS messages via PHP
 
 
  We send SMS messages from Oracle, but the method could be 
 used in php I
 think. We use www.quios.com. They accept SMS messages as XML documents
 which you simply post to their site using http. The response, 
 also by http,
 is an xml document. It is very easy to build your outgoing 
 xml document,
 and the response document is so simple in structure that you 
 could probably
 get by without an xml parser to interpret it.
 
 
 Does it cost anything?
 Do you need to be registered?
 
 Are there similar services?
 
 Apologies for imprecise answers, the facility was arranged 
 for us by another department in our company.
 
 Yes it does cost, but I don' t know how much. You do have to 
 register. I suggest you visit the site for further info. I 
 don't specifically know of any similar sites, but they must exist.
 
 Euan Greig
 Technical Consultant
 BRANN DATA
 [EMAIL PROTECTED]
 01285 645997
 
 
 
 
 
 **
 
 Any opinions expressed in this email are those of the individual and 
 not necessarily the Company. This email and any files 
 transmitted with 
 it, including replies and forwarded copies (which may contain 
 alterations) 
 subsequently transmitted from the Company, are confidential 
 and solely for 
 the use of the intended recipient. If you are not the 
 intended recipient 
 or the person responsible for delivering to the intended 
 recipient, be 
 advised that you have received this email in error and that 
 any use is 
 strictly prohibited.
 
 **
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: 
 [EMAIL PROTECTED]
 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] sending SMS messages via PHP

2001-03-07 Thread Neil Kimber

Errrm, no easy solution. You should either find an SMS gateway connection that can 
receive formatted emails, convert them and post them (at a charge to you), or go the 
whole hog and get yourself a connection to an SMSC via http. I would suggest you 
pursue the first approach as the second is only viable if you're intending to set 
yourself up as an SMS business.

As an example, check out http://www.cygnet.co.uk/sms/
I've never used this company, but they're the first one I clicked on after searching 
for EMAIL SMS GATEWAY

Hope this helps,
Neil

-Original Message-
From: Michael Smith [mailto:[EMAIL PROTECTED]]
Sent: 07 March 2001 17:00
To: [EMAIL PROTECTED]
Subject: [PHP] sending SMS messages via PHP


I can easily send standard email messages via PHP. Does anyone know how to
send SMS messages?

--
Michael A. Smith [EMAIL PROTECTED]
Director of Data Systems, wcities.com
ICQ: 35884415
:wq

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] sending SMS messages via PHP

2001-03-07 Thread Henrik Hansen

 I can easily send standard email messages via PHP. Does anyone know how to
 send SMS messages?

Send them as an email too, most tele companies have the possibility for that
option (atleast here in denmark)

--
Henrik Hansen


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]