January 29, 2007 at 4:47 am
How do we process and send SMS
February 1, 2007 at 8:00 am
This was removed by the editor as SPAM
February 1, 2007 at 8:17 pm
If you're looking to send to say, a mobile phone, most phones have an email for text messaging. As far as SQL Server is concerned, sending is the same as sending any other email. If you can figure out how to hook up an incoming SMS message where it'll drop into an mailbox, SQL Server can read and process the incoming text messages just as it would a normal email message. Otherwise, there's nothing native other than alerts using SQL Server Agent to send.
K. Brian Kelley
@kbriankelley
March 20, 2007 at 7:40 am
March 21, 2007 at 12:25 am
Thanks.
I have got some idea.
The real thing is I'm working for a University. When we publish the exam results,
I want to notify the students through SMS. For that I like the students to send an SMS to a number like
RESULTS 9999
and after receiving this SMS how can I reply with the results automatically like
Sub1 <Grade>, Sub2 <Grade> . . .
What are the hardwares, telephone instruments, telephone connections,softwares needed
Thanks in advance
March 21, 2007 at 1:30 pm
something like this comes to mind:
You'll need some kind of SMS-interceptor, that will email data to SQL Server "asking" for grades. SQL Server, after processing email message, sends SMS back to originator...
I found a sample on Microsoft on how to read SMS messages -
>.NET Compact Framework Sample: Receiving SMS Messages</A
See if it helps, or if I can help with this...
March 22, 2007 at 4:07 pm
wow.
sending mail from a trigger seems like a REALLY bad idea...
---------------------------------------
elsasoft.org
March 22, 2007 at 6:33 pm
It generally is because you're holding up a database operation while the email is being readied and sent. What's typically done is a trigger would dump to a table which gets read periodically and emails generated from the contents of the table.
K. Brian Kelley
@kbriankelley
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply