email - seet the cron job but why the order mail will auto cc to other customers? -


set cron job, order email auto cc other customers , don't know why. email configuration , setup proper, , "order email " auto cc, shipment,invoice email , account email didn't have problem. enter image description here enter image description here

you have customer address email in core_email_queue_recipients table not removed. task launch cron job email recipients in table.

you can run sql script before initial cron job run

delete    `core_email_queue_recipients`    `core_email_queue_recipients`.`message_id` not in    (     select `core_email_queue`.`message_id`      `core_email_queue`   ) 

Comments