The waiting on the download from the pull down for the email addresses is what makes this so slow with a large number of customers ...
If you edit:
/admin/gv_mail.php
and around line 362 change:
Code:
<tr>
<td class="main"><?php echo TEXT_CUSTOMER; ?></td>
<td><?php echo zen_draw_pull_down_menu('customers_email_address', $customers, $_GET['customer']);?></td>
</tr>
to read:
Code:
<?php if (false) { ?>
<tr>
<td class="main"><?php echo TEXT_CUSTOMER; ?></td>
<td><?php echo zen_draw_pull_down_menu('customers_email_address', $customers, $_GET['customer']);?></td>
</tr>
<?php } ?>
It should speed things up for you as now the dropdown is not trying to draw the 1000s of lines needed for the customers' emails and you should be able to type in an email address for it to send ...
Be sure to test this out ...