Add email status search trying

This commit is contained in:
FusionPBX 2023-02-17 11:55:47 -07:00 committed by GitHub
parent bc84d609d0
commit 7dbfd22acb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -220,6 +220,12 @@
else {
echo " <option value='sent'>".$text['label-sent']."</option>\n";
}
if (isset($_GET["email_status"]) && $_GET["email_status"] == "trying") {
echo " <option value='trying' selected='selected'>".$text['label-trying']."</option>\n";
}
else {
echo " <option value='trying'>".$text['label-trying']."</option>\n";
}
echo " </select>\n";
//if (permission_exists('email_queue_all')) {
// if ($_GET['show'] == 'all') {