1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
namespace TotalPoll\Notification; ! defined( 'ABSPATH' ) && exit();
/** * WebHook Notification Model * @package TotalPoll\Notification * @since 1.1.0 */ class WebHook extends Model { public function send() { wp_remote_post( $this->getTo(), [ 'user-agent' => $this->getFrom(), 'blocking' => false, 'sslverify' => false, 'body' => $this->getBody(), ] ); } }
|