(I think) Im having a problem with my email confirmation, the following is what the customer receives after checkout confirmation:
What i am trying to do it when the customer receives his/her confirmation it will email banking details. if they have chosen bank deposit.Thank you for your interest in MYSITE Online Store Products. Your order has been received and will be dealt with as quickly as possible.
Order ID: #4851B-A1C61-F8342
Invoice: http://www.mysite.com/webstore/index.ph ... 1C61-F8342
Also can anyone tell me what the difference is between email_thanks and email_message?
This is what is contained in my checkout_confirm.php file
Any assistance would be fantastic.Code: Select all
$_['email_subject'] = 'Order ID #%s'; $_['email_greeting'] = 'Dear %s,'; $_['email_thanks'] = 'Thank you for your interest in %s Products. Your order with details below has been received. Thank you.'; $_['email_order'] = '<b>Order ID:</b> #%s'; $_['email_invoice'] = '<b>Invoice:</b> <a href="%s">%s</a>'; $_['email_date'] = '<b>Date Ordered:</b> %s'; $_['email_email'] = 'E-Mail'; $_['email_telephone'] = 'Telephone'; $_['email_fax'] = 'Fax'; $_['email_shipping_address'] = 'Shipping Address'; $_['email_shipping_method'] = 'Shipping Method'; $_['email_payment_address'] = 'Payment Address'; $_['email_payment_method'] = 'Payment Method'; $_['email_comment'] = 'Your Order Comments'; $_['email_thanks_again'] = 'Thanks again for choosing %s.'; $_['email_product'] = 'Product'; $_['email_model'] = 'Model'; $_['email_quantity'] = 'Quantity'; $_['email_price'] = 'Unit Price'; $_['email_total'] = 'Total'; $_['email_message'] = 'Thank you for your interest in %s Products. Your order has been received and will be dealt with as quickly as possible.' . "\n\n" . 'Order ID: #%s' . "\n" . 'Invoice: %s ' . "\n"; 'Date Ordered: %s' . "\n\n"; 'The comments for your order are:' . "\n\n" . '%s' . "\n\n"; 'Please reply to this email if you have any questions.' . "\n\n"; 'If you selected to pay via Bank Deposit, account details are below:' . "\n"; 'Account Name: My Company' . "\n"; 'BSB: 000-000' . "\n"; 'Account: 123456' . "\n"; 'Note: The items will be sent as soon as payment has been received.' . "\n"; $_['error_coupon'] = 'Error: Coupon is either invalid, expired or reached its usage limit!'; $_['error_product'] = 'Error: You don\'t have any products in your shopping cart that this coupon can be used with!';
-Dave