News:

Looking for documentation? Take a look on our wiki

Main Menu

no order emails to vendor

Started by bunglehaze, January 02, 2012, 13:11:39 PM

Previous topic - Next topic

vazi

same problem for me too, anyone did get resolve the problem?

robboh69

I also have this email-problem still in 2.0.2 (joomla 1.7.3)

"Could not initiate emailfunction" (PHPMAILER_INSTANTIATE) is the errormessage.

My customers get the email of their order, but I don't. I have to check manually in administration if I have new orders.

I was thinking of making some temporary hack to also send a "seecret copy" of the customers email to my adress, but I'm not sure exactly in what files to start digging...

robboh69

I got things working now!

I changed email settings in joomla global configuration to use SMTP and filled in my account infos there and that did the trick in my case!

sandstorm

Any Joy with Bungle's original problem?

I'm not using vendors, but users are getting the same message when checking out "You must provide at least one recipient email address."

Andy
J3.6.4 / PHP7.0.12
VM3.0.16

muddauber

Has anyone resolved the problem with email order notifications
and PayPal shipping. I am not getting any notifications of orders,
only verification of Payment with PayPal.

See post:
VM Standard payment plugin sends email out but anything ordered
via the PayPal plugin goes missing or not sent out. Any ideas?

Milbo

muddauber, this post is talking about version 2.0.2 and a bit 2.0.4 maybe. Which version do you use? Please read http://forum.virtuemart.net/index.php?topic=79799.0
Should I fix your bug, please support the VirtueMart project and become a member
______________________________________
Extensions approved by the core team: http://extensions.virtuemart.net/

muddauber

I'm using Joomla 2.5.6 and VirtueMart 2.0.10.

I worked through the jupgrade migration and this is my
only snag. We are a small shop and having the
shopkeeper get an email of the order was the
most efficient. With new version, I see that
warning:

"PAYPAL
     Warning - In VM2, the vendor and buyer will ONLY receive an email when the transaction is complete."


ngenge

Please check this link. http://forum.virtuemart.net/index.php?topic=96541.msg359637#msg359637

It is working for me. After payment in paypal, automatically send confirmed order mails to both vendor and buyer.
I put following 4 lines in the function plgVmOnPaymentResponseReceived ---> plugins/vmpayment/paypal.php

$modelOrder = VmModel::getModel ('orders');
$order = array();
$order['order_status'] = 'C';
$modelOrder->updateStatusForOneOrder ($virtuemart_order_id, $order, TRUE);

Before $cart = VirtueMartCart::getCart (); around line 387

Thanks deewhyweb for your post :)
(http://forum.virtuemart.net/index.php?topic=96541.msg359637#msg359637)