Send SMS using JavaMail API

Can anyone tell me how to send SMS using JavaMail API.Thanks
[82 byte] By [tomym] at [2007-9-26 2:05:34]
# 1

U could always add your name to the list, but you will more than likely have more spam mails than lines of code.

I would also like to konw however if anyone knows of an open source project that is build a SMS API.

Or possibly is their a group of people who would like to get involved in trying to build an SMS API. It can be done and has been done, but you must pay between 2.5 and 5 cents per message and it only works in the states.

Which is no good for me and probably a lot of other interested parties.

Cheers

wwe8

wwe8 at 2007-6-29 8:50:44 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
I have tried messaging throu' mail servers to mobiles and pagers but I have no Idea how what sms api will comprise of or what exactly is required for an sms service.I need increase my knowledge base.Perhaps then I can contribute. Tell me more If you can.
AbhijitMK at 2007-6-29 8:50:44 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3

> Can anyone tell me how to send SMS using JavaMail

> API.

>

> Thanks

You need to create two servers. A mail and an SMS server. The mail server retrieves mail, determines the recepients phone number and you pass this to the SMS server as an object. From the SMS server, extract the contents and send the message using SMS. You have to be connected to an SMSC (via dialup of leased line) or attach a GSM device or mobile phone to you computer to send SMS messages.

Likewise, you can also send SMS msgs to an email an email box. All you need is a parser to extract the email address from the text message and send the same using SMTP through your mail server.

^Ricky^ at 2007-6-29 8:50:44 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 4
btw....you can take a look at this http://www.freewebz.com/sms2mailIf you need more details, you can mail me at sms2any@yahoo.com
^Ricky^ at 2007-6-29 8:50:44 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...