Title: Pushover Support
Last modified: April 21, 2018

---

# Pushover Support

 *  [firestrife](https://wordpress.org/support/users/firestrife/)
 * (@firestrife)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/pushover-support-2/)
 * Please add support for Pushover. It’s similar to Pushbullet but much better. 
   I prefer Pushover because it supported cross-platforms better than Pushbullet,
   and easy to use API for development, such as running bash scripts on servers.
   They already provide excellent code snippets for many other languages: PHP, JavaScript,
   Perl, Ruby, etc…
 * Here’s example code, it’s not mine but took it off their website:
 * `<?php
    curl_setopt_array($ch = curl_init(), array( CURLOPT_URL => "https://api.
   pushover.net/1/messages.json", CURLOPT_POSTFIELDS => array( "token" => "APP_TOKEN","
   user" => "USER_KEY", "message" => "hello world", ), CURLOPT_SAFE_UPLOAD => true,
   CURLOPT_RETURNTRANSFER => true, )); curl_exec($ch); curl_close($ch); ?>
    -  This topic was modified 7 years, 11 months ago by [firestrife](https://wordpress.org/support/users/firestrife/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fpushover-support-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [gioni](https://wordpress.org/support/users/gioni/)
 * (@gioni)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/pushover-support-2/#post-10227496)
 * Yes it will be implemented one day. As a quick solution the **cerber_notify_sent**
   hook can be used to send a message via Pushover API. This hook fires after a 
   notification email has been successfully sent by the plugin.
 *     ```
       add_action('cerber_notify_sent', function ($body = '', $params = array()) {
       	// Here you can use:
       	// $body - text of email
       	// $params['subject'] - subject of email
       	// $params['IP'] - remote IP address
       });
       ```
   
 * [https://wpcerber.com/wordpress-security-hooks/](https://wpcerber.com/wordpress-security-hooks/)

Viewing 1 replies (of 1 total)

The topic ‘Pushover Support’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-cerber_77a9bf.svg)
 * [WP Cerber Security, Anti-spam & Malware Scan](https://wordpress.org/plugins/wp-cerber/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-cerber/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-cerber/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-cerber/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-cerber/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-cerber/reviews/)

## Tags

 * [pushover](https://wordpress.org/support/topic-tag/pushover/)

 * 1 reply
 * 2 participants
 * Last reply from: [gioni](https://wordpress.org/support/users/gioni/)
 * Last activity: [7 years, 11 months ago](https://wordpress.org/support/topic/pushover-support-2/#post-10227496)
 * Status: not resolved