Title: WebSolutions ABA's Replies | WordPress.org

---

# WebSolutions ABA

  [  ](https://wordpress.org/support/users/websolutions-aba/)

 *   [Profile](https://wordpress.org/support/users/websolutions-aba/)
 *   [Topics Started](https://wordpress.org/support/users/websolutions-aba/topics/)
 *   [Replies Created](https://wordpress.org/support/users/websolutions-aba/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/websolutions-aba/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/websolutions-aba/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/websolutions-aba/engagements/)
 *   [Favorites](https://wordpress.org/support/users/websolutions-aba/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Order Delivery Date for WooCommerce] Delivery Day blocks sending emails](https://wordpress.org/support/topic/delivery-day-blocks-sending-emails/)
 *  Thread Starter [WebSolutions ABA](https://wordpress.org/support/users/websolutions-aba/)
 * (@websolutions-aba)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/delivery-day-blocks-sending-emails/#post-5933638)
 * Thank you for answering so fast!!!!
    I have to apologize.It was a coincidence
   that in all the tests every time I activated the plugin.Day Delivery wasn’t the
   cause.The issue was SSL/email. I really appreciate your concern and help. Again
   my apologies. Regards. Belén
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Woocommerce.New order not send emails.](https://wordpress.org/support/topic/woocommercenew-order-not-send-emails/)
 *  Thread Starter [WebSolutions ABA](https://wordpress.org/support/users/websolutions-aba/)
 * (@websolutions-aba)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/woocommercenew-order-not-send-emails/#post-5902326)
 * This is the way i solved it,maybe could help someone.It worked for me.
 * Add the following code to your funtions.php (active theme):
 * // Workaround for the mysterious bug in Woocommerce that prevents order emails
   //
   from being sent.
 * add_action( ‘woocommerce_thankyou’, ‘order_email_workaround’ );
 * function order_email_workaround ($order_id) {
    global $woocommerce; $mailer =
   $woocommerce->mailer(); // Email customer with order-processing receipt $email
   = $mailer->emails[‘WC_Email_Customer_Processing_Order’]; $email->trigger( $order_id);//
   Email admin with new order email $email = $mailer->emails[‘WC_Email_New_Order’];
   $email->trigger( $order_id ); }
 * add_action( ‘woocommerce_payment_complete’, ‘order_complete_email_workaround’);
 * function order_complete_email_workaround ($order_id) {
    global $woocommerce; 
   $mailer = $woocommerce->mailer(); $email = $mailer->emails[‘WC_Email_Customer_Completed_order’];
   $email->trigger( $order_id ); }

Viewing 2 replies - 1 through 2 (of 2 total)