Recent Topics

Order confirmation send the CC email?



  • Hi bagisto,

    Could you help me how to send CC email once i was confirm the order on the front-end. Currently its sending email only for customer i want to add once CC email address when the customer place the order another email address will be notify through email.



  • Hi,

    Inside Admin Package you can find a file name called as 'NewOrderNotification.php' (path = Admin->src->Mail).
    In this file, you can see a build method, which is sending email to customers, so you can add your cc here like -

    return $this->to($this->order->customer_email, $this->order->customer_full_name)
          ->cc('[email protected]')
          ->subject(trans('shop::app.mail.order.subject'))
          ->view('shop::emails.sales.new-order');
    

    Thanks
    Rahul Shukla



  • @rahul said in Order confirmation send the CC email?:

    ->cc('[email protected]')

    Hello Rahul,

    Order notification email is not working when customer places the order. We have Marketplace package installed and have APP_DEBUG=true. Invoice email notification is working without any issue.

    Please suggest.



  • Hello maheshb,

    Can you please tell, whether you are asking regarding marketplace package or shop order email notification. If regarding marketplace then, please generate the ticket with order id .

    To generate the ticket click on flowing link:
    https://bagisto.uvdesk.com/en/



  • Hello Rahul,

    Thanks for the quick response. I have raised the ticket.


Log in to reply