Client Login

Contact Us

  • Call Now:+91-9426045500
  • Email Adress:bonrix@gmail.com
  • Address Info:Ahmedabad,India

Close Login

Login

SQL Server


Crete function SMSC_Send_Sms
(
@url varchar(8000)
)
returns varchar(8000)
as
BEGIN
DECLARE @win int
DECLARE @hr int
DECLARE @text varchar(8000)
EXEC @hr=sp_OACreate 'WinHttp.WinHttpRequest.5.1',@win OUT
IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
EXEC @hr=sp_OAMethod @win, 'Open',NULL,'GET',@url,'false'
IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
EXEC @hr=sp_OAMethod @win,'Send'
IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
EXEC @hr=sp_OAGetProperty @win,'ResponseText',@text OUTPUT
IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
EXEC @hr=sp_OADestroy @win
IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
RETURN @text
END
--select dbo.SMSC_Send_Sms ('http://www.smscountry.com/smscwebservice_bulk.aspx? user=XXX&passwd=XX&message=xxxxxxx&mobilenumber=91xxxxxxxx xx&sid=SMSC&mtype=N&dr=Y')