0

Installed an E commerce website in both Linux and Windows server.i am getting confirmation mail from Linux Server after an order placed but not getting confirmation mail from Windows Server.

Liju
  • 687
  • 1
  • 7
  • 16

1 Answers1

0

Try this,

change in woocommerce.php

if u search function mailer() changed following lines:

include_once( 'classes/emails/class-wc-emails.php' )

to

include_once( 'classes/class-wc-email.php' );

$this->woocommerce_email = new WC_Emails();

to

$this->woocommerce_email = new WC_Email();

i think this will solve the problem...

just search if classes/emails/class-wc-emails.php in woocommerce plugin exists then u don't need to change..

ReNiSh AR
  • 2,782
  • 2
  • 30
  • 42