Send instant Notifications to your IOS devices
Downloads
Command Line Tool
A Windows command line tool which helps in sending notifications to your devices from 3rd party applications.

Example:

PushNotifyMe.exe /userid={your user id} /code={your code} /txt={your message}
SQL Server Script
This script enables you to send push notification from SQL Server
Declare @obj int
declare @sUrl varchar(4000)

set @sURL = 'https://pushnotify.co.uk/send/?userid=<your userid>&code=<your code>&txt=<your message>'

exec sp_OACreate 'MSXML2.ServerXMLHttp', @obj OUT
exec sp_OAMethod @obj, 'open', NULL, 'GET', @sUrl, false
exec sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Type','application/x-www-form-urlencoded'
exec sp_OAMethod @obj, send, NULL, ''
exec sp_OADestroy @obj
C# Method
This example shows you how to send push notification from C#
public void SendNotification(string UserID, string Code, string txt)
{
    string url = "https://pushnotify.co.uk/send/?userid=" + UserID + "&code=" + Code + "&txt=" + txt;
    System.Net.WebRequest myWebRequest = System.Net.WebRequest.Create(url);
    System.Net.WebResponse myWebResponse = myWebRequest.GetResponse();
}
VB.Net Method
This example shows you how to send push notification from VB.Net
Public Sub SendNotification(ByVal UserID As String, ByVal Code As String, ByVal txt As String)
    Dim url As String = "https://pushnotify.co.uk/send/?userid=" & UserID & "&code=" & Code & "&txt=" & txt
    Dim myWebRequest As System.Net.WebRequest = System.Net.WebRequest.Create(url)
    Dim myWebResponse As System.Net.WebResponse = myWebRequest.GetResponse()
End Sub