Mail Notification in order placement
-
Hello,
When i checkout, mail goes to the user, I have seen onepagecontroller success function, but there is no mail functionality added.
Can you tell me how does mail go to the user after checkout.
Thankyou
Deepak Sharma -
Hi @dsharma
We have fired an event called checkout.order.save.after after successful order save and listening it to admin using below line -
Event::listen('checkout.order.save.after', 'Webkul\Admin\Listeners\Order@sendNewOrderMail');
and calling a function sendNewOrderMail and sending mail.
Thanks
-
Thankyou rahul for your reply,
you have replied
We have fired an event called checkout.order.save.after after successful order save and listening it to admin using below line -
Event::listen('checkout.order.save.after', 'Webkul\Admin\Listeners\Order@sendNewOrderMail');
and calling a function sendNewOrderMail and sending mail.Here i wanted to ask how are you calling above mentioned function because i have already included that event
Regards
Deepak Sharma -
Hi @dsharma
Please refer this one - https://forums.bagisto.com/topic/460/mail-notification-in-order-placement/2
Thanks