mirror of https://github.com/itflow-org/itflow
152 lines
7.2 KiB
PHP
152 lines
7.2 KiB
PHP
<?php
|
|
require_once "inc_all_admin.php";
|
|
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT * FROM contacts
|
|
LEFT JOIN clients ON client_id = contact_client_id
|
|
WHERE contact_archived_at IS NULL
|
|
AND contact_email != ''
|
|
AND (contact_primary = 1 OR
|
|
contact_important = 1 OR
|
|
contact_billing = 1 OR
|
|
contact_technical = 1)
|
|
ORDER BY client_name ASC, contact_primary DESC,
|
|
contact_important DESC"
|
|
);
|
|
|
|
?>
|
|
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title mt-2 mb-2"><i class="fa fa-fw fa-envelope-open mr-2"></i>Bulk Mail</h3>
|
|
<div class="card-tools">
|
|
<button id="bulkActionButton" hidden class="btn btn-primary" type="submit" form='bulkActions' name="send_bulk_mail_now">
|
|
<i class="fas fa-fw fa-paper-plane mr-2"></i>Send Now (<span id="selectedCount">0</span>)
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<form id="bulkActions" action="post.php" method="post">
|
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h5>Email Message</h5>
|
|
|
|
<hr>
|
|
|
|
<div class="form-group">
|
|
<select type="text" class="form-control select2" name="mail_from">
|
|
<option value="<?php echo nullable_htmlentities($config_mail_from_email); ?>">
|
|
<?php echo nullable_htmlentities("$config_mail_from_name - $config_mail_from_email"); ?></option>
|
|
<option value="<?php echo nullable_htmlentities($config_invoice_from_email); ?>">
|
|
<?php echo nullable_htmlentities("$config_invoice_from_name - $config_invoice_from_email"); ?></option>
|
|
<option value="<?php echo nullable_htmlentities($config_quote_from_email); ?>">
|
|
<?php echo nullable_htmlentities("$config_quote_from_name - $config_quote_from_email"); ?></option>
|
|
<option value="<?php echo nullable_htmlentities($config_ticket_from_email); ?>">
|
|
<?php echo nullable_htmlentities("$config_ticket_from_name - $config_ticket_from_email"); ?></option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="mail_from_name" placeholder="From Name" value="<?php echo nullable_htmlentities($config_mail_from_name); ?>" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="subject" placeholder="Subject" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<textarea class="form-control tinymce" name="body" placeholder="Type an email in here"></textarea>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-calendar"></i></span>
|
|
</div>
|
|
<input type="datetime-local" class="form-control" name="queued_at">
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<h5>Select Contacts</h5>
|
|
<hr>
|
|
<div class="card">
|
|
<div class="table-responsive">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<td>
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="selectAllCheckbox" onclick="checkAll(this)">
|
|
</div>
|
|
</td>
|
|
<th>Client</th>
|
|
<th>Name</th>
|
|
<th>Title</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php
|
|
while ($row = mysqli_fetch_array($sql)) {
|
|
$contact_id = intval($row['contact_id']);
|
|
$contact_name = nullable_htmlentities($row['contact_name']);
|
|
$contact_title = nullable_htmlentities($row['contact_title']);
|
|
if (empty($contact_title)) {
|
|
$contact_title_display = "-";
|
|
} else {
|
|
$contact_title_display = "$contact_title";
|
|
}
|
|
$contact_email = nullable_htmlentities($row['contact_email']);
|
|
$contact_primary = intval($row['contact_primary']);
|
|
$contact_important = intval($row['contact_important']);
|
|
$contact_billing = intval($row['contact_billing']);
|
|
$contact_technical = intval($row['contact_technical']);
|
|
$contact_client_id = intval($row['contact_client_id']);
|
|
$client_name = nullable_htmlentities($row['client_name']);
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input bulk-select" name="contact_ids[]" value="<?php echo $contact_id; ?>">
|
|
</div>
|
|
</td>
|
|
<td><?php echo $client_name; ?></td>
|
|
<td>
|
|
<a href="client_contact_details.php?client_id=<?php echo $contact_client_id; ?>&contact_id=<?php echo $contact_id; ?>" target="_blank">
|
|
<?php echo $contact_name; ?>
|
|
</a>
|
|
</td>
|
|
<td><?php echo $contact_title_display; ?></td>
|
|
<td><?php echo $contact_email; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="js/bulk_actions.js"></script>
|
|
|
|
<?php
|
|
|
|
require_once "footer.php";
|