异常使用WAY2SMS发送SMS消息

时间:2018-06-10 17:50:06

标签: c# winforms sms sendmessage way2sms

我编写了以下代码,通过Way2Sms网站发送短信,但短信无法发送

        try
        {
            Way2Sms oway2 = new Way2Sms(LoginIDofWay2smssite, passwordofWay2smssite);
            oway2.Login();
            oway2.SendSms(MobileNumberofsmstobesend, Messagetobesent);
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }   

我收到错误消息"登录被拒绝"

    1.  LoginIDofWay2smssite / passwordofWay2smssite    -   are correct
    2.  
        A.  I have included the following DLLs  in my project 
                -   CsQuery
                -   Nitin.Sms.Api
                -   SmsClient
                -   SMSClassLibrary

        B.  Added references to the above DLLs

        C.  specified the following using statements

                using System;
                using System.ComponentModel;
                using System.Data;
                using System.Data.SqlClient;
                using System.Windows.Forms;
                using SmsClient;
                using System.Net;
                using System.Net.Mail;
                using WhatsAppApi;
                using Nitin.Sms.Api;
                using System.Text.RegularExpressions;

    3.  I have logged in to the WAY2SMS site using the above ==>  LoginIDofWay2smssite / passwordofWay2smssite 
        I have been able to successfully Login and send the above  test message - Messagetobesent -  to the above mobile number => MobileNumberofsmstobesend

请帮我解决这个问题,并提前感谢你

问候 Manoj Gokhale

0 个答案:

没有答案