mirror of https://github.com/itflow-org/itflow
74 lines
3.2 KiB
PHP
74 lines
3.2 KiB
PHP
<?php
|
|
|
|
require_once '../../../includes/modal_header.php';
|
|
|
|
$contact_ids = array_map('intval', $_GET['contact_ids'] ?? []);
|
|
|
|
$count = count($contact_ids);
|
|
|
|
ob_start();
|
|
|
|
?>
|
|
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-envelope-open mr-2"></i>Send Email to <strong><?= $count ?></strong> Contacts</h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="csrf_token" value="<?= $_SESSION['csrf_token'] ?>">
|
|
<?php foreach ($contact_ids as $contact_id) { ?><input type="hidden" name="contact_ids[]" value="<?= $contact_id ?>"><?php } ?>
|
|
<div class="modal-body">
|
|
|
|
<label>From Email / Display Name</label>
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-sm-6">
|
|
<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 col-sm-6">
|
|
<input type="text" class="form-control" name="mail_from_name" placeholder="From Name" maxlength="255"
|
|
value="<?php echo nullable_htmlentities($config_mail_from_name); ?>">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="subject" placeholder="Subject" maxlength="255">
|
|
</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="modal-footer">
|
|
<button type="submit" name="send_bulk_mail_now" class="btn btn-primary text-bold"><i class="fas fa-paper-plane mr-2"></i>Send Emails</button>
|
|
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button>
|
|
</div>
|
|
</form>
|
|
|
|
<?php
|
|
require_once '../../../includes/modal_footer.php';
|