SMS APPLICATION
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
Hi just try out way2sms free api. use predefined commands and function to send sms
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
For a heads-up, you need to get a GSM modem (or a CDMA modem), attach it to your PC and use the API provided with the modem to send SMS. And do not use words like "important" or "urgent" here. People in CP help others in their leisure, it may be urgent for you, but not for us here.
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
Don't cross post. Read the forum guidelines. Pick one forum and use it.
I know the language. I've read a book. - _Madmatt
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
-
Hello shawn414, try to see this excellent article, I hope it can help you and give you the basis on which to build. Send a Text Message to a Cell Phone from a VB.NET Application[^] Bye
Carmelo La Monica
I actually used this feature provided in VB.NET, as a project for a break alarm here at work. It was made to notify people of the breaks about to end 5-10min prior to the end of the break. Of course it was used through via Email the mobile number. So the down side is, is that people had to use their email account credentials to setup the automatic notification. Of course the contrast in this to match what he expects would to be setting up a generic email account and of course applied directly to the code for the notification. At least that is my 2 copper. The implementation is very easy and with just a few lines of code. Use c# > vb for better management. But for unfamiliarity use the vb.net
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
Code for VB.NET
Try
Dim insMail As New MailMessage()
With insMail
.From = strFrom
.To = strTo
.Subject = strSubject
.Body = strBody
.Cc = strCC
If Not strAttachments.Equals(String.Empty) Then
Dim strFile As String
Dim strAttach() As String = strAttachments.Split(";")
For Each strFile In strAttach
.Attachments.Add(New MailAttachment(strFile.Trim()))
Next
End If
End WithIf Not strSMTPServer.Equals(String.Empty) Then SmtpMail.SmtpServer = strSMTPServer End If SmtpMail.Send(insMail)
Catch e As Exception
Console.WriteLine(e.Message)
End TryThen pick from the list in which your employees have the provider: SMS Gateway Listing The code is easily converted to c#
-
Hello. I need to develop an sms application to send sms to all customers phone numbers immediately an item comes into stock. Please i need to understand the basics. How to cut out sms resellers and develop my own. please its important and urgent. Thank you for your anticipated response and clear help.\ kind regards hassan
stay jacking
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Mail;namespace EmailSMS
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}private void button1\_Click(object sender, EventArgs e) { try { MailMessage SMS = new MailMessage(); SmtpClient SMTP\_Server = new SmtpClient(SMTP\_Server\_Name); // Use Generic Account information SMTP\_Server.Credentials = new System.Net.NetworkCredential(userName, password); // Who its from SMS.From = SMS\_From; // Who its going out to SMS.To = SMS\_To; // (areacode+prefix+suffix) or 5558675309@txt.att.net // Subject of SMS SMS.Subject = SMS\_Subject; // Message/Body to SMS SMS.Body = SMS\_Body; // SMTP Port SMTP\_Server.Port = SMTP\_Port; // SSL Enable SMTP\_Server.EnableSsl = true OR false; // SMS Sent SMTP\_Server.Send(); // SMS Notification Sent Shown MessageBox.Show("SMS St Successfully!"); } catch (Exception ex) { MessageBox.Show("Error while trying to send SMS.\\n\\nError: ", ex.ToString()); }; } }
}
In C#, Cutting out the SMS re sellers is like telling your employees to give up their carriers and switch to yours when you can't provide a reliable service. Use the generic email system, it helps and is less of a hassle. What I provided is a breakdown of what you can accomplish with the code. Its not much, so make use of it.