Help again... on a componet in .Net that would send sms messages

MykelV

New member
Joined
Jun 24, 2004
Messages
2
Programming Experience
Beginner
hi again... i was wondering if any of you guys have or know of a third party component in vb.net that can send/receive sms messages (with the help ofcourse of a cellphone). id really appreciate it if you guys could help me. thanks.
 
Simple Fix

You can use the system.web dll to email just about any phone out there. Here are the address'

Sprint: 10-digit-number@messaging.sprintpcs.com
Verizon: 10-digit-nmber@vtext.com
AT&T: 10-digit-number@mobile.att.net
T Mobile: 10-digit-number@tmomail.net
Nextel: 10-digit-number@messaging.nextel.com
Cingular: 10-digit-number@mobile.mycingular.net
Alltel: 10-digit-number@message.alltel.com

just put in your phone number @ host and post the emil. This works great if you can hit an smtp server. (Most likely you can, try your own.

HERE IS SOURCE CODE:
Dim x AsNew MailMessage()

x.From = "bGATES@MICROSOFT.COM"

x.To = "5045012323@@tmomail.net"

x.Cc = "CC ADDRESS GOES HERE"

x.Subject = "SUBJECT GOES HERE"

x.Body = "MESSAGE GOES HERE"

x.Priority = MailPriority.High

SmtpMail.SmtpServer = "192.168.1.1"

SmtpMail.Send(x)

 
Back
Top