Reputation: 633
I'm using VM 2.0.6 and Joomla 2.5 and the Multisafepay payment gateway.
Whenever a user puts a product in his cart, and clicks on checkout, the user is send to another page completely (Multisafepay's website, so not VM anymore) where he can select his desired payment option - same thing as paypal for example. But, at that time, Virtuemart is already sending an e-mail to the user confirming his order. That e-mail is saying: Thank you for your order blabla, the status of your order is blank..
So, VM is already sending an e-mail before the user payed.
Does anybode relate to this or knows an answer?
Upvotes: 2
Views: 6303
Reputation: 56
You can change the point where an invoice copy is sent to the customer in the Store Configuration. Look for Configuration > check out > Default Order Status to send an invoice and make sure you have the Confirmed status chosen.
Upvotes: 0
Reputation: 8282
VM 2.0.6 is working like this :
when the order is placed that means any one of the shipping and payment method is selected. and cart have valid data it will create the order and send an email to the user that mentioned an order has been placed. You can change the sending mail section if you need. One function name with notifyemail (iam not sure the name but it start with notify) in the path: administrator/components/com_virtuemart/models/orders.php you can check all your required things like shipping /payment methods are selected before calling this function. the function should be initiate from cart.php controller in front end.
Upvotes: 0