Sort client names ASC not desc for bulk mail

This commit is contained in:
johnnyq 2024-02-26 15:45:11 -05:00
parent 0a088a43c5
commit 18bc7c909e
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ $sql = mysqli_query($mysqli, "SELECT * FROM contacts
contact_important = 1 OR
contact_billing = 1 OR
contact_technical = 1)
ORDER BY client_name DESC, contact_primary DESC,
ORDER BY client_name ASC, contact_primary DESC,
contact_important DESC"
);