Zen Cart Logo
Forums / Managing Customers and Orders / Admin Copy of Order via email

Admin Copy of Order via email

Locked

Views: 2,038

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
13 Jul 2006, 10:21 AM
#1
michaelchild avatar

michaelchild

New Zenner

Join Date:
May 2006
Posts:
21
Plugin Contributions:
0

Admin Copy of Order via email

I am trying to find out if its posible (and if it is how) to add the transaction id number into the order email which is sent to my admin email address. this is because it would make it easier to match up the orders with the wprldpay eamils as they include a transaction ID

13 Jul 2006, 12:44 PM
#2
theoracle avatar

theoracle

Suspended

Join Date:
Aug 2004
Posts:
3,180
Plugin Contributions:
1

Re: Admin Copy of Order via email

By transaction ID ... I suppose you mean the 'order ID' - correct ? :unsure:

If so, then - yes - it should be possible to do so.

13 Jul 2006, 3:16 PM
#3
michaelchild avatar

michaelchild

New Zenner

Join Date:
May 2006
Posts:
21
Plugin Contributions:
0

Re: Admin Copy of Order via email

no i mean a worldpay transaction ID which is returned to the shop by worldpay after a transaction

13 Jul 2006, 3:36 PM
#4
theoracle avatar

theoracle

Suspended

Join Date:
Aug 2004
Posts:
3,180
Plugin Contributions:
1

Re: Admin Copy of Order via email

From your includes/templates/<your_template>/templates/wpcallback_default.php file, I could probably add an email routine, below the quoted block below, in order to be sent to your global store email address.

<?php //echo '<WPDISPLAY ITEM=banner>'; if ($testMode !== 0) {echo WP_TEST_HEADING . "<br /><br />";} echo WP_CONTACT_HEADING . "<br /><br />"; echo $name . "<br/>"; echo $address . "<br />"; echo $postcode . "<br />"; echo $country . "<br />"; echo "Tel: " . $tel . "<br />"; echo "Email: " . $email . "<br /><br />"; echo WP_PAYMENT_HEADING . "<br /><br />"; echo $authAmountString . " has been debited from your " . $cardType . " card.<br />"; echo "Our ref: " . $cartId . "<br />"; echo "Your WorldPay Transaction ID is " . $transId . "<br />"; ?>

However I'd rather hear from the DEV team to see if this type of procedure is permitted on e-commerce programming policy. If it is, it could probably be arranged.

13 Jul 2006, 3:39 PM
#5
michaelchild avatar

michaelchild

New Zenner

Join Date:
May 2006
Posts:
21
Plugin Contributions:
0

Re: Admin Copy of Order via email

great, but is there any way to include it into the email i get sent when an order is placed

13 Jul 2006, 3:44 PM
#6
theoracle avatar

theoracle

Suspended

Join Date:
Aug 2004
Posts:
3,180
Plugin Contributions:
1

Re: Admin Copy of Order via email

great, but is there any way to include it into the email i get sent when an order is placed

Please re-read the above again.

13 Jul 2006, 7:51 PM
#7
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Admin Copy of Order via email

The ePath payment module has logic for this in it. You may wish to look at how it's done as an example.

13 Jul 2006, 8:12 PM
#8
theoracle avatar

theoracle

Suspended

Join Date:
Aug 2004
Posts:
3,180
Plugin Contributions:
1

Re: Admin Copy of Order via email

Yes, but is it allowed to capture another customer's transac ID from a transaction company and email it directly to the global store's email address without considering it as a risk ?

15 Jul 2006, 1:16 AM
#9
michaelchild avatar

michaelchild

New Zenner

Join Date:
May 2006
Posts:
21
Plugin Contributions:
0

Re: Admin Copy of Order via email

could some one please post a set of instructions to solve my issue!
thanks for all the help