diff --git a/client_bulk_mail.php b/client_bulk_mail.php
new file mode 100644
index 00000000..850a7e49
--- /dev/null
+++ b/client_bulk_mail.php
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+MORE
+
+ ">
+
+ Bulk Mail
+
+
+
">
diff --git a/post.php b/post.php
index 68e7e332..96854117 100644
--- a/post.php
+++ b/post.php
@@ -10,7 +10,6 @@ require_once "functions.php";
require_once "check_login.php";
-
// Load specific module logic
require_once "post/account.php";
@@ -20,6 +19,8 @@ require_once "post/api.php";
require_once "post/asset.php";
+require_once "post/bulk_mail.php";
+
require_once "post/category.php";
require_once "post/certificate.php";
@@ -82,6 +83,4 @@ require_once "post/budget.php";
require_once "post/misc.php";
-
?>
-
diff --git a/post/bulk_mail.php b/post/bulk_mail.php
new file mode 100644
index 00000000..3a2eb32d
--- /dev/null
+++ b/post/bulk_mail.php
@@ -0,0 +1,51 @@
+ $mail_from,
+ 'from_name' => $mail_from_name,
+ 'recipient' => $contact_email,
+ 'recipient_name' => $contact_name,
+ 'subject' => $subject,
+ 'body' => $body
+ ];
+ }
+ addToMailQueue($mysqli, $data);
+
+ // Logging
+ mysqli_query($mysqli,"INSERT INTO logs SET log_type = 'Bulk Mail', log_action = 'Send', log_description = '$session_name sent bulk email', log_ip = '$session_ip', log_user_agent = '$session_user_agent', log_client_id = $client_id, log_user_id = $session_user_id");
+
+ $_SESSION['alert_message'] = "You Sent Bulk Mail";
+
+ } else {
+
+ $_SESSION['alert_message'] = "NO Bulk Mail SENT";
+
+ }
+
+ header("Location: " . $_SERVER["HTTP_REFERER"]);
+
+}
\ No newline at end of file