Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Bank Details on Order Confirmation Email

Bank Details on Order Confirmation Email

Locked

Views: 3,957

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
25 Jan 2008, 10:21 AM
#1
mike_dean avatar

mike_dean

Totally Zenned

Join Date:
Feb 2006
Location:
Central Coast, NSW, Australia
Posts:
531
Plugin Contributions:
0

Bank Details on Order Confirmation Email

Hi,

I want to have my Bank Details displayed on the Order Confirmation that customers recevie when they select the Direct Deposit option and complete their order.

The details ar on the site during the checkout process but not on the email the customer receives.

I've searched thru threads and it gets mentioned, but no one appears to have a solution..

I know this is possible, as I had it when my cart was set up in 1.2.7 mode..

I dug this up from an old order conf..

*Please use the following details to transfer your total order value:

Account No.: xxxxxx
BSB Number: xxxxxx
Account Name: xxxxxxx
Bank Name: Commonwealth Bank

Thanks for your order which will ship once we receive payment in the above account.*

3 Feb 2008, 11:51 AM
#2
vickichiki avatar

vickichiki

New Zenner

Join Date:
Dec 2005
Posts:
24
Plugin Contributions:
0

Re: Bank Details on Order Confirmation Email

Me too! The sheer amount of emails we are receiving requesting this info is driving my poor admin girl insane. It used to appear prior to upgrade and I cant find out where to fix it either :(

3 Feb 2008, 3:57 PM
#3
fuzzybunny avatar

fuzzybunny

New Zenner

Join Date:
Sep 2007
Location:
Melbourne Australia
Posts:
60
Plugin Contributions:
0

Re: Bank Details on Order Confirmation Email

Hi guys,
We use a bastardised version of money order for direct deposit, hance the file names:

..includes/languages/your_template/modules/payment/moneyorder.php

we have:

Line #24 : define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', "For Direct Bank Deposit / Wire Transfer" . "\n\n" . "Deposit fund to account: \n Name: ********** \n BSB: ****** \n Account: ************ \n" . "\n\n" . 'Your order will not ship until we receive payment.');

Gets sent with the order confirmation email - works fine for us.

24 Feb 2008, 7:38 AM
#4
microbe avatar

microbe

New Zenner

Join Date:
Aug 2007
Posts:
26
Plugin Contributions:
0

Re: Bank Details on Order Confirmation Email

Thanks for that.

But what if you aren't using a bastardised version of money order? Can you also post your bastardised version?

I am using a direct deposit module and would also like to see bank details on emailed invoice.

24 Feb 2008, 8:15 AM
#5
microbe avatar

microbe

New Zenner

Join Date:
Aug 2007
Posts:
26
Plugin Contributions:
0

Re: Bank Details on Order Confirmation Email

OK, here is what I've done:

in the file includes/classes/order.php on or about line 955 find:

$html_msg['PAYMENT_METHOD_DETAIL'] = (is_object($GLOBALS[$_SESSION['payment']]) ? $GLOBALS[$payment_class]->title : PAYMENT_METHOD_GV );

add after it the following line obviously replacing items your details:

if ($GLOBALS[$payment_class]->title == "Direct Bank Deposit"){ $html_msg['PAYMENT_METHOD_DETAIL'].= "<div style='text-align:left'><br><strong><span style='color:#FF0000'>Bank details</style></strong><br>Bank: ******<br>Account name: ******<br>BSB: ******<br>Account: ******<br>Reference: CID-" . $_SESSION['customer_id'] . "</div>";}

I preferred to have bank details left aligned hence the <div>. Also highlighted the header in red.

The reference at the end is so that I can match the customer to the payment. I would much rather include the invoice number but I couldn't figure how to pick it up on the checkout page so customer ID will do. Didn't want to spend any more time on it. May come back to that.

Hope this helps

26 Feb 2008, 9:11 AM
#6
allerup avatar

allerup

New Zenner

Join Date:
Dec 2007
Posts:
5
Plugin Contributions:
0

Re: Bank Details on Order Confirmation Email

microbe:

Hope this helps

At least it helped me:clap:

Thanks!

19 Sep 2008, 3:54 PM
#7
vandiermen avatar

vandiermen

Totally Zenned

Join Date:
Feb 2007
Posts:
518
Plugin Contributions:
1

Re: Bank Details on Order Confirmation Email

microbe:

Hope this helps

also worked for me. Thank you!