diff --git a/src/model/subscriber.rs b/src/model/subscriber.rs
index 759f458e610540bd7200799575b94147a1c66105..f19278a4abda35fcb4447ed91dd9da820e13bd1a 100644
--- a/src/model/subscriber.rs
+++ b/src/model/subscriber.rs
@@ -10,4 +10,17 @@ use crate::model::notification::Notification;
 pub struct Subscriber {
     pub url: String,
     pub name: String,
+}
+
+impl Subscriber {
+    #[tokio::main]
+    pub async fn update(&self, payload: Notification) {
+        REQWEST_CLIENT
+            .post(&self.url)
+            .header("Content-Type", "JSON")
+            .body(to_string(&payload).unwrap())
+            .send().await.ok();
+        log::warn_!("Sent {} notification of: [{}] {}, to: {}",
+            payload.status, payload.product_type, payload.product_title, self.url)
+    }
 }
\ No newline at end of file