function SendViaPushover(AAppKey, AUserKey, ATitle, AMsg, ADevice: string): boolean;


This function sends a notification via Pushover (cloud service).
 
Parameters

aAppKey

Your Pushover app key

aUserKey

Your Pushover user key

aTitle

The title of the message you wish to send

aMessage

The actual contents of the message you wish to send

aDevice

The ID of the specific recipient device (optional)

 
Return value

True

The message was successfully sent

False

Error while sending the message; the message was not sent

 
Example


// The following example sends message via Pushover

begin
  SendViaPushover('btdr763', 'yr43f787', 'Notification Title', 'Something happened...', '');
end.