2.8.9 - Batch Notifications Getting Sent, but box unchecked
Brought to you by:
skazat
I'm sending via SMTP 1 message/second via batch (as
my web host blocks a mass mailing at one time via
SMTP), and I have the Receive Batch Mail confirmations
box unchecked, but I still receiving a confirmation for
each and EVERY one of the e-mails I'm sending out
(because there's a batch for each one). I'm using 2.8.9.
Logged In: YES
user_id=90833
I confirm this bug, heightening the priority...
Logged In: YES
user_id=90833
Will be fixed for 2.8.10,
A quick fix would be to change the lines:
[snip]
$self->mojo_mail_send_obj->_email_batch_notification(
-batch_num => $self->mojo_mail_batch_count,
-emails_sent =>
($self->mojo_mail_batch_count *
$self->max_messages_per_connection),
);
[/snip]
in mojo/MOJO/perlib/Mail/Bulkmail/MojoMailServer.pm to:
[snip]
$self->mojo_mail_send_obj->_email_batch_notification(
-batch_num => $self->mojo_mail_batch_count,
-emails_sent =>
($self->mojo_mail_batch_count *
$self->max_messages_per_connection),
)if
($self->mojo_mail_send_obj->{list_info}->{get_batch_notification}
== 1);
[/snip]