Friday 21 March 2014

Send Text or bulk SMS in ASP.Net using C# and VB.Net





Description:-

            In previous Example I already Explain that how to send sms to any user from our asp.net Application using way2sms or Fullonsms services. But now this service is not working because ithis service is now not available so behind this result I found the other services to send sms to any user from our Application. so to send the sms first you have to perform the following the steps are follows

Using This service allowed multiple site like Way2sms, FullOnSMS, 160by2, Ultoo.com, SmsSpark.com SMSFI.com Freesms8, Site2SMS, IndyaRocks.com SMSAbc.com , Sms440, BhokaliSMS, etc.

In order to send sms you have to follow this three steps

1. Register at Site2SMS and get Username and Password.
2. Register at Mashape.com and generate key.
3. Download the .DLL file from ASPSnippets.SmsAPI.dll click   here and add it in your project bin folder


to show example of upload multiple file in MVC upload multiple file in database in mvc

Example of auto complete Textbox search Autocomplete Search in Ajax

we already add .dll file in a project to download this 
to download complete example click here 
download here!


CS.aspx:-

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CS.aspx.cs" Inherits="CS" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Send free SMS in ASP.Net using C# and VB.Net</title>
    <style type="text/css">
        body {
            font-family: Arial;
            font-size: 10pt;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
        <table border="0">
            <tr>
                <td>Your Mobile Number:
                </td>
                <td>
                    <asp:TextBox ID="txtyourmoNumber" runat="server"></asp:TextBox>
                </td>
                <td>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Required"
                        ControlToValidate="txtyourmoNumber" ForeColor="Red"></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td>your site2sms Password:
                </td>
                <td>
                    <asp:TextBox ID="txtyourPassword" TextMode="Password" runat="server"></asp:TextBox>
                </td>
                <td>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="Required"
                        ControlToValidate="txtyourPassword" ForeColor="Red"></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td>Reciever mobile Number:
                </td>
                <td>
                    <asp:TextBox ID="txtRecieveNumber" runat="server" Width="300"></asp:TextBox>
                </td>
                <td>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ErrorMessage="Required"
                        ControlToValidate="txtRecieveNumber" ForeColor="Red"></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td>Message Boby Text:
                </td>
                <td>
                    <asp:TextBox ID="txtMessage" runat="server" TextMode="MultiLine"></asp:TextBox>
                </td>
                <td>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server" ErrorMessage="Required"
                        ControlToValidate="txtMessage" ForeColor="Red"></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td></td>
                <td>
                    <asp:Button ID="btnSendsms" runat="server" Text="Send" OnClick="btnSend_Click" />
                </td>
                <td></td>
            </tr>
        </table>
    </form>
</body>
</html>



CS.aspx.cs:-

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using System.Net;
using System.IO;
using ASPSnippets.SmsAPI;

public partial class CS : System.Web.UI.Page
{
    protected void btnSend_Click(object sender, EventArgs e)
    {
        SMS.APIType = SMSGateway.Site2SMS;
        SMS.MashapeKey = "<Mashape API Key>";
        SMS.Username = txtyourmoNumber.Text.Trim();
        SMS.Password = txtyourPassword.Text.Trim();
        if (txtRecieveNumber.Text.Trim().IndexOf(",") == -1)
        {
            //Single SMS
            SMS.SendSms(txtRecieveNumber.Text.Trim(), txtMessage.Text.Trim());
        }
        else
        {
            //Multiple SMS
            List<string> numbers = txtRecieveNumber.Text.Trim().Split(',').ToList();
            SMS.SendSms(numbers, txtMessage.Text.Trim());
        }
    }
}

212 comments:

  1. i get this error

    The underlying connection was closed: The connection was closed unexpectedly.

    ReplyDelete
  2. First Follow the step properly and create your account in Site2sms and check your Internet connection. it is working properly.

    ReplyDelete
    Replies
    1. hello sir
      i got error {"message":"Invalid Mashape Key"}
      what can i do ??
      please help me as soon as possible

      Delete
  3. Hi thank you for the article. I had a couple of easy questions. So if I follow those steps, will this be able to send out like 50 sms text in bulk pretty easily and maybe up to 1000 per day? Is this sms service free? Thank you in advance.

    ReplyDelete
  4. no error but sms not sent

    ReplyDelete
    Replies
    1. it's work properly plz follow this step properly and the try again

      Send Text or bulk SMS in ASP.Net using C# and VB.Net
      Posted on 02:30 by kirit kapupara with 7 comments




      Description:-

      In previous Example I already Explain that how to send sms to any user from our asp.net Application using way2sms or Fullonsms services. But now this service is not working because ithis service is now not available so behind this result I found the other services to send sms to any user from our Application. so to send the sms first you have to perform the following the steps are follows

      Using This service allowed multiple site like Way2sms, FullOnSMS, 160by2, Ultoo.com, SmsSpark.com SMSFI.com Freesms8, Site2SMS, IndyaRocks.com SMSAbc.com , Sms440, BhokaliSMS, etc.

      In order to send sms you have to follow this three steps

      1. Register at Site2SMS and get Username and Password.
      2. Register at Mashape.com and generate key.
      3. Download the .DLL file from ASPSnippets.SmsAPI.dll click here and add it in your project bin folder

      Delete
  5. error report in line no 27 : give solution
    The remote server returned an error: (403) Forbidden.
    Line 25: {
    Line 26: //Single SMS
    Line 27: SMS.SendSms(txtRecieveNumber.Text.Trim(), txtMessage.Text.Trim());
    Line 28: }
    Line 29: else



    ReplyDelete
  6. I am not getting any error nor sending message.please help me.

    ReplyDelete
    Replies
    1. plz read the step clearly and then try again it will work....thank you

      Delete
    2. check your network connection and plz read the step clearly and then try again it will work....thank you

      Delete
    3. i have follow all steps correctly and got mashap key but key doesn't work for me. {"message":"Invalid Mashape Key"} this error accure.

      Delete
  7. This comment has been removed by the author.

    ReplyDelete
  8. Can I get rid of BLZ that comes in every SMS that I send through this API??

    ReplyDelete
    Replies
    1. plz follow this step carefully
      Register at Site2SMS and get Username and Password.
      2. Register at Mashape.com and generate key

      Delete
  9. thanks...you are doing a great job..keep it up..

    ReplyDelete
  10. The remote server returned an error: (403) Forbidden.

    iam getting this error on cs.aspx.cs line 23

    ReplyDelete
    Replies
    1. it was working fine.....plz follow this step carefully
      Register at Site2SMS and get Username and Password.
      2. Register at Mashape.com and generate key
      and then try....

      Delete
  11. from where will i get the AspSnippets.SMsAPI class? plz help

    ReplyDelete
    Replies
    1. it is .dll file you can download from this path
      http://aspsnippets.com/DownloadFile.aspx?File=ASPSnippets.SmsAPI.dll#center

      Delete
    2. thanks alot.
      Still i get an error on thus line:
      SMS.SendSms(txtRecipientNumber.Text.Trim(), txtMessage.Text.Trim());


      An exception of type 'System.Net.WebException' occurred in System.dll but was not handled in user code

      Additional information: The remote server returned an error: (403) Forbidden.


      Plzz help

      Delete
    3. it will work fine so plz check your internet connection or follow the step properly that describes in this post and the try again it will work for me very nicely.....thank you

      Delete
    4. How to get API key

      Delete
    5. Register at http://docs.mashape.com/api-keys and generate key.

      Delete
  12. how to add dll file to bin folder we dont have any bin folder
    please reply to us early..........

    ReplyDelete
    Replies
    1. Create bin Folder in your project and put this .dll file in this folder thank you........

      Delete
  13. hii kirit sir...
    I done all the process as u said...but WngMdwqbqDfZjhftJFb6FMKUAPqU this is my key...where should it paste...
    error 403 getting....thank you

    ReplyDelete
  14. which key we have to copy testing key or production key...

    ReplyDelete
  15. Paste ur testing key in place of maspee key in a code

    ReplyDelete
  16. hii kirit sir...
    I done all the process as u said...but WngMdwqbqDfZjhftJFb6FMKUAPqU this is my key...where should it paste...
    error 403 getting....thank you

    which key we have to copy testing key or production key...

    ReplyDelete
  17. after sending sms ..there is no error ...also msg not getting to receiver,,..after using break point ..
    try
    {
    send("8421621475", "swapnil", txtMessageBody.Text,txtmobno.Text);

    from here jump to catch...plz help

    either sir give mail id I will sent all coding with snapshot...thank you

    ReplyDelete
  18. Hii ...
    iam getting this error;
    The remote server returned an error: (403) Forbidden.
    try
    {
    SMS.APIType = SMSGateway.Site2SMS;
    SMS.MashapeKey = "";
    SMS.Username = "my number";//Site2SMS username
    SMS.Password = "my passward"//;Site2SMS passward
    SMS.SendSms("recivernumber", EmailBody);
    }
    catch (Exception ex)
    {
    //ex message =The remote server returned an error: (403) Forbidden.
    }

    ReplyDelete
    Replies
    1. And i m Register at Site2SMS also
      and Register at Mashape.com
      and get testing key
      SMS.MashapeKey = "";

      Delete
    2. it will work properly follow the main three steps properly and the try again and also mobile can't have DND support oterwise message will not send.

      Delete
  19. This comment has been removed by the author.

    ReplyDelete
  20. H! Kirit awesome blog ...your code is working 100% perfect ....

    ReplyDelete
    Replies
    1. thank you bro...... most welcome

      Delete
    2. hello rahul sir, please help me why i got following error
      {"message":"Invalid Mashape Key"}

      Delete
  21. not working bro... i have to do with generated key?..

    ReplyDelete
  22. for bidden error(403).. what i have to do with generated key in mashape?..

    ReplyDelete
    Replies
    1. it's working for all user plz follow the step properly and the try again thank you.......

      Delete
  23. it works , but how to send using ultoo.com
    Please help.......................

    ReplyDelete
    Replies
    1. it will only support this site only
      Way2sms, FullOnSMS, 160by2, Ultoo.com, SmsSpark.com SMSFI.com Freesms8, Site2SMS, IndyaRocks.com SMSAbc.com , Sms440, BhokaliSMS, etc.

      Delete
  24. I just want send sms world wide not only in india

    ReplyDelete
    Replies
    1. then purchase your own Gateway and sending sms anyway......thank you.....

      Delete
  25. Thanks for ur code., It's working perfectly.,

    ReplyDelete
  26. can u tell me how to send SMS using postmethod? and how to save the nos separately into database?

    ReplyDelete
  27. thnx bro its working ............... thnx.........

    ReplyDelete
  28. SMS.SendSms(txtRecieveNumber.Text.Trim(), txtMessage.Text.Trim());
    The remote certificate is invalid according to the validation procedure.
    This is the error

    ReplyDelete
  29. how to get the connections.pls help me Mr.kirit kapupara

    ReplyDelete
  30. Please tell me the Reference Name

    ReplyDelete
    Replies
    1. Its work very fine and what connection plz mentioned your comments briefly so I can understand.

      Delete
  31. Site2Sms website is not running on google...Blody site

    ReplyDelete
  32. error - The underlying connection was closed: The connection was closed unexpectedly.

    complete all steps

    rply: ketan_padhiyar@ymail.com

    ReplyDelete
  33. SMS.SendSms(txtRecieveNumber.Text.Trim(), txtMessage.Text.Trim());

    this error has occured please tell me what to do..
    please mail me anujkeshri10@gmail.com

    ReplyDelete
  34. The remote server returned an error: (403) Forbidden.

    ReplyDelete
  35. Hi Sir,

    Am getting error like this,

    The remote server returned an error: (503) Server Unavailable.

    ReplyDelete
  36. Hi KIRIT,

    thanks for great article ...

    ReplyDelete
    Replies
    1. Welcome and also view blog update post and support this blog .

      Delete
  37. Thanks for the FANTASTIC post! This information is really good information about Bulk SMS ProvidersI m looking forward desperately for the next post of yours.
    Regards,
    Bulk SMS Hyderabad

    ReplyDelete
  38. hi.. can you please help with the vb .net code for this

    ReplyDelete
  39. Same code just you have to change your syntax from c# to VB else nothing other change.

    ReplyDelete
  40. Thanks for your prompt reply.. will try to find the syntax changes..

    ReplyDelete
  41. Can you please provide the steps for generating the test key in mashape

    ReplyDelete
    Replies
    1. Login in mashpe and copy the test key and paste it in your code

      Delete
    2. i have registered and created user name and password.. but i am not sure how to generate the key.. also do we need to register any api ? i am not clear on this part.. if you can help with the steps.. that will be of great help..

      Delete
    3. thanks mate.. i was able to find it out..thanks so much for the post. I am able to successfully send the sms using vb application.

      Delete
  42. hi kirit gr8 nice post!
    but i have one requirement is there any chance to sending message with out registration ?????
    because my requirement is we need to sending message from my database mobile numbers like who are users in my database

    you have any idea for that one?
    thank u

    ReplyDelete
    Replies
    1. You can send SMS easily by just fetch mobile number of the user which are located in your database. Thank you plz put comment if you have any doubt and support the blog

      Delete
  43. This comment has been removed by the author.

    ReplyDelete
  44. you have to first register with this number that is in database.suppose you register with 9978718547 then also put the entry of this number in database and then now you can send sms to any other user by this number.

    ReplyDelete
    Replies
    1. nope i want to send by my database numbers
      suppose i have one user record inmy db his number is somethink like 9999999999 if he is login to my application he is sending message by his number only it should by 9999999999

      Delete
  45. this is possible but before 9999999999 user login he is must register with Site2SMS and mashpee website.

    ReplyDelete
    Replies
    1. yeah thats my question is there any chance to(user 9999999999) send sms with out registration is there any dlls for that one

      Delete
  46. Sorry no idea about that thanks...

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
  47. I followd the same steps.I can able to send message both single person and group .
    Thanks a lot ..

    ReplyDelete
  48. Hi Thanks for this post. It is workable to me.

    Bulk SMS Hyderabad

    ReplyDelete
    Replies
    1. Thank you and also touch with us for new post
      ..

      Delete
    2. please tell me how can I get test keys in mashape.com.kindly help me

      Delete
  49. how can I get test keys in mashape.com and i have already registered and couldn't find that keys.

    ReplyDelete
    Replies
    1. Just login in mashpee and copy test key and paste in your code.

      Delete
    2. yeah this really working.Actually I am developing a project.My project is about to send notification about any event which are added by the user through email and msg.can u pls tell me how to implement this in my project.

      Delete
  50. I am unable to send sms to any other number except mine..
    Kindly help

    ReplyDelete
    Replies
    1. May be they have activated DND service.So send sms to those number without DND service.

      Delete
  51. Hi I'm getting this error do u have any solution for this.....
    The remote server returned an error: (403) Forbidden.

    ReplyDelete
  52. It is work fine plz follow the proper step.

    ReplyDelete
  53. when login in http://www.mashape.com/keys
    404 page not found display

    ReplyDelete
  54. Thank you very much. Your posting is very great.
    Bulk sms in Bhubaneswar

    ReplyDelete
  55. Bulk SMS Service Provides a unique opportunity to e-commerce website where they can bridge the gap for customer service by offering SMS Service Technology. It is very useful for us.Thanks for Sharing. Bulk Sms Services

    ReplyDelete
  56. The information about Bulk SMS given in this article was awesome. Thanks for sharing with us.
    bulk sms services in Indore | bulk sms services provider

    ReplyDelete
  57. I am unable to generate key please help..

    ReplyDelete
  58. I am unable to generate key please help..

    ReplyDelete
    Replies
    1. Simply follow the step as define in above description.

      Delete
  59. Hello sir. i implemented all code. it's working fine for same state only
    As my account on site2sms is haryana mobile number. this code send sms to haryana numbers only not to other state numbers.
    please help me with that

    ReplyDelete
    Replies
    1. i want to send messages to other states also

      Delete
  60. You have to pay for this services.

    ReplyDelete
    Replies
    1. and i also want to ask that this .DLL file supports only site2sms. doesn't support other websites like way2sms, 160by2 is there any solution if i want to use some other website

      Delete
    2. No other site not provide facility.

      Delete
  61. Bulk SMS Marketing is one of the most practical options to market your product. Bulk SMS are best way to communicate personal computer to mobile phone and bulk smsbulk sms has become the most effective, cheap and reliable means of communication, advertising, marketing, campaigning also. Thanks for sharing...
    Bulk SMS Marketing Services across India

    ReplyDelete
  62. I could not Getting this error

    ASP.NET runtime error: Could not load file or assembly 'ASPSnippets.SmsAPI (4)' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) D:\SQL Quries\windows connection\practice\SMS\SMS\WebForm1.aspx 1 1 SMS

    ReplyDelete
  63. sir i want to change header and remove the add from sms so how can we do that

    ReplyDelete
  64. That is not possible because this is provided by SMS facility free so simply it will use its header in every SMS that you send.

    ReplyDelete
  65. awesome. it is working. it is perfect. thank you very much.

    ReplyDelete
  66. am getting this kind of error so please tell me the answer...................the error is

    Error 1 The type or namespace name 'ASPSnippets' could not be found (are you missing a using directive or an assembly reference?) C:\Users\ARUN\Desktop\dm1\Default3.aspx.cs 10 7 C:\...\dm1\

    ReplyDelete
  67. Add asp snippets DLL file in your bin folder.

    ReplyDelete
  68. I have done every thing carefully, yet it is showing an error "Invalid Mashape key"

    ReplyDelete
  69. hi friend i have some error in my proj

    ReplyDelete
  70. SMS.SendSms(txtRecieveNumber.Text.Trim(), txtMessage.Text.Trim());

    this line error for me

    ReplyDelete
  71. SMS.SendSms(txtRecieveNumber.Text.Trim(), txtMessage.Text.Trim());


    error;
    this api is deprecated due to take down request from site2sms

    how to solve this problem

    ReplyDelete
    Replies
    1. Hi generate proper key and follow the proper step.

      Delete
    2. geting following error This API is Deprecated due to take down request from site2sms can u help

      Delete
  72. i got this error.........
    plz give me solution sir

    response":"This API is Deprecated due to take down request from site2sms

    ReplyDelete
  73. how to genrate proper key. lot off time we are genrate the key but not take proper solution..plz help me

    ReplyDelete
  74. get following error
    This API is Deprecated due to take down request from site2sms

    ReplyDelete
  75. getting following error
    This API is Deprecated due to take down request from site2sms

    can u help

    ReplyDelete
  76. its showing ,message":"Invalid Mashape Key".. please help me ..

    ReplyDelete
  77. it showing = {"message":"Invalid Mashape Key"} error

    ReplyDelete
  78. it showing = {"message":"Invalid Mashape Key"} error
    please help

    ReplyDelete
  79. I Am Getting {"message":"Invalid Mashape Key"} ..
    Plz Help.....

    ReplyDelete
  80. Not working error is occur. error is invalid Mashape Key

    ReplyDelete
  81. I have all the steps i.e 1. Registered with way2sms and 2. Mashape.com
    and created Mashape Key there are two types of keys Testing & Production
    Tried both but getting same error below with both keys
    System.Exception: {"message":"Invalid Mashape Key"}
    Any Idea?

    ReplyDelete
  82. Hi
    Kirit Sir,

    i am gettng error invalid mashupkey ..i am using above code and testing mashupkey..then what's the problem ?

    http://www.designsmatrix.in

    ReplyDelete
  83. Hello Sir,

    I am getting Invalid Mashape Key Error when sending sms.I am not understanding what to do.Please help.

    ReplyDelete
  84. You can immediately access the service http://www.intistele.com/ and fast connect API SMS in your personal account. This is the perfect solution for you if you don't want to mess with code.

    ReplyDelete
    Replies
    1. thanks for inform. also visit blog regularly for new update.

      Delete
  85. Thanks a lot for sharing this perfect article about "Bulk SMS" ,

    ReplyDelete
  86. hello,mine says invalid mashape key can u tell me how to get this key.....i logged in and created a application and clicked get the keys...

    ReplyDelete
  87. thanks and also share blog with your students for new updates.

    ReplyDelete
  88. how i get Mashape Key
    where i get Mashape Key

    can u please provide the Mashape Key

    ReplyDelete
    Replies
    1. hi register in mashpee website and create application and get the api or mashpee key.yhank you.

      Delete
  89. I followed all steps and getting runtime error "message":"Invalid Mashape Key" .Please suggest ..

    ReplyDelete
  90. Nice Article..and Doing Bulk SMS Business is Very Effective..Todays advertising Field If we Talk about fatest and high conversion medium of marketing than it is Bulk SMS Marketing..if you are looking Bulk SMS company in Jaipur than Please Visit us..

    ReplyDelete
  91. Aadishesh - the finest bulk SMS service provider in India! Use our SMS gateways to send bulk SMS Online anywhere in India at economical prices!

    Take advantage of a free test account before acquiring your package. Only finest routes used for national, international and DND numbers. Special plans for promotional & transactional bulk SMS. Order your pack today and redeem countless benefits right away! Aadishesh Info Communications

    ReplyDelete
  92. SMSGATEWAYHUB offers users to send SMS from Excel sheet directly. As most Business Professionals use MS Excel for organizing their customer data; SMSc, along with its feature to send SMS from Excel, empowers all users to save their precious time and send personalized bulk SMS.

    ReplyDelete
  93. Bulk SMS Services From Pnpuniverse provides web using http and smpp server shift through the DND data and TRAI rules by sending sms to simply choice base.
    Bulk SMS Service

    ReplyDelete
  94. i got the below error :

    {"message":"Invalid Mashape Key"}

    ReplyDelete
    Replies
    1. same error here bro,.
      what's solution for this

      Delete
    2. same error how to slove this

      Delete
  95. i got the below error :

    {"message":"Invalid Mashape Key"}
    any solutions for that
    mr.kirit kapupara

    ReplyDelete
  96. m also getting the same error {"message":"Invalid Mashape Key"}
    I followed the entire procedure...help

    ReplyDelete
  97. Same error [Exception: {"message":"Invalid Mashape Key"}]
    is this API still valid. or just a junk of code.

    ReplyDelete
  98. i have followed all the step and also generate the key but i got error msg {"message":"Invalid Mashape Key"}

    ReplyDelete
  99. i am also getting the same error
    {"message":"Invalid Mashape Key"}

    ReplyDelete
  100. I have the same error
    {"message":"Invalid Mashape Key"}


    any one solved this error ?

    ReplyDelete
  101. I have the same error
    {"message":"Invalid Mashape Key"}

    pls solve the error sir

    ReplyDelete
    Replies
    1. I have the same error..
      {"message":"Invalid Mashape Key"}

      Delete
    2. I also have the same error..
      {"message":"Invalid Mashape Key"}

      Delete
  102. i genrate mashape key but {"message":"Invalid Mashape Key" error

    ReplyDelete
  103. i will try all the way to sort out this error... everything is well but message cant sent to any number... There is no error seen but cant send messages.... What i do now///

    ReplyDelete
  104. In This World of Communication and fast moving business through web and internet it becomes very essential to save the time for marketing and promotion of your products and business. So, there is an easy solution for all the entrepreneurs to promote their new products over the market with the help of Bulk SMS Technique.

    ReplyDelete
  105. i genrate mashape key but {"message":"Invalid Mashape Key" error

    ReplyDelete
  106. Thanks a lot for sharing such a good source with all, i appreciate your efforts taken for the same. I found this worth sharing and must share this with all.can u visit us
    ivr services in india

    ReplyDelete
  107. Thanks for sharing great thought, I like your blog post very much.

    Send Bulk Business SMS Indore

    ReplyDelete
  108. this is only for india ....how can i use this for Pakistan......

    give me possible solution

    ReplyDelete
  109. Hi sir , am getting the error {"message":"Invalid Mashape Key"} even i generated Mashape Key. Please help me as soon as possible.

    ReplyDelete
  110. Thanks for providing great information. I like your post very much.

    SMS Scheduling

    ReplyDelete
  111. This comment has been removed by the author.

    ReplyDelete
  112. followed all the steps. not getting any error but the message is not delivered.

    ReplyDelete
  113. This comment has been removed by the author.

    ReplyDelete
  114. It is always difficult to send bulk messages to a large number of people but this article has provided a long lasting solution to this problem using the #C and VB.Net. We have employed the bulk SMS service to send message to our clients who are accessing our Letter of Recommendation Writing Services

    ReplyDelete
  115. I have the same error..
    {"message":"Invalid Mashape Key"}

    ReplyDelete
  116. Replies
    1. thanks. also keep visiting updated post on blog.

      Delete
  117. If you are a software developer and you need to be used to the common programming practices, you should be used to using such forums. ASP.NET is one of the programming languages which are in high demand. I have passion and with time I will like to use this programming language. Could you be writing a programming journal? Ask for professional Journal Article Critiquing Help.

    ReplyDelete
  118. Thanks for writing this in-depth post. You covered every angle. The great thing is you can reference different parts.

    Best Bulk SMS in Hyderabad

    ReplyDelete
  119. hi ,i got the error"{"message":"Invalid Mashape Key"}",
    please suggest??

    ReplyDelete
  120. Using bulk SMS softwares is always a good idea to quickly initiate the Bulk SMS sending. These softwares mostly resides in the operators network and manages the processes.

    SEO Company In Indore

    ReplyDelete
  121. Bulk SMS Provider is a premium SMS gateway. Our services can be used for SMS marketing Chennai. Services include bulk SMS, voice SMS, reseller and API added. Bulk SMS service providers in Chennai.

    ReplyDelete
  122. Thanks for sharing the blog regarding the Bulk SMS service provider. Keep sharing more and more.

    ReplyDelete
  123. Bulk SMS is utilized as promotional SMS and Transactional for SMS marketing. Our bulk SMS marketing solution helps you to send cheap bulk promotional SMS service provider in India. It's least expensive marketing solution to reach achieve imminent clients. MAXWELL Communication furnishes bulk SMS service with NDNC filter, so you don't have any lawful issues with NDNC Registry.Best Bulk Sms Provider In India

    ReplyDelete
  124. Thanks for sharing valuable information. OneXtel is the best Bulk SMS Provider and across India providing bulk sms services at best prices with reliable Gateways and APIs.

    ReplyDelete
  125. Bulk SMS Providers Hyderabad gives you the access to establish communication, market your goals and gain more consumers, bulk sms 1India's number bulk SMS Hyderabad.
    Bulk SMS Providers Hyderabad

    ReplyDelete
  126. Search your mobile number is registered or not

    Please check the following link

    DND Check

    ReplyDelete
  127. Very nice article about software and related information, its very nice article. thanks for sharing such great article hope kee sharing such kind of article Android bulk sms sender

    ReplyDelete
  128. I really like your post..Bulk SMS becoming important services for business promotion.. it is really very effective for companies to grow faster..thanks for sharing such a great post!!

    ReplyDelete
  129. Nice Sharing,Bulk SMS is the right way to reach your target customer, but to choice right provider is important and if you wish to try ‘’MsgClub’’ services then there is no other platform better than this.Bulk SMS API

    ReplyDelete
  130. Way2SMS is well known bulk sms service provider and thanks for update.Bulk SMS API

    ReplyDelete
  131. Its very nice informative article. thanks for sharing such great article hope keep sharing such kind of article Best android bulk sms sender software

    ReplyDelete
  132. Thanks for sharing such great article hope keep sharing such kind of article Bulk Sms Sender Software

    ReplyDelete
  133. Hey, very nice site. I came across this on Google, and I am stoked that I did. I will definitely be coming back here more often. Wish I could add to the conversation and bring a bit more to the table, but am just taking in as much info as I can at the moment. Thanks for sharing.

    Dai Software

    ReplyDelete