pushover() sends a message (push notification) to a user or group. Messages can be given different priorities, play different sounds, or require acknowledgments. pushover_normal(), pushover_silent, pushover_quiet, pushover_high, and pushover_emergency functions send messages with those priorities.
url: (optional) supplementary URL to display with message
url_title: (optional) title to show for supplementary URL
format: Message formatting. If html (default), messages can include a limited subset of HTML formatting. If monospace, text is formatted using monospace font.
retry: (optional) how often (in seconds) to repeat emergency priority messages (min: 30 seconds; default: 60 seconds)
expire: (optional) how long (in seconds) emergency priority messages will be retried (max: 86400 seconds; default: 3600 seconds)
callback: (optional) callback URL to be visited (HTTP POST) once an emergency priority message has been acknowledged (details)
timestamp: (optional) a Unix timestamp containing the date and time to display to the user instead of the time at which the message was received
...: Additional arguments to pass to pushover()
Returns
an invisible list containing the following fields:
status: request status (1 = success)
request: unique request ID
raw: the raw httr::response object
receipt: a receipt ID (only for emergency priority messages)
errors: a list of error messages (only for unsuccessful requests)
Examples
## Not run:pushover(message ="Hola Mundo!")## End(Not run)