burghbiz Posted August 4, 2004 Posted August 4, 2004 Hello, If anyone can help me with this I would greatly appreciate it. I am looking to add some info at the bottom of my order confirmation email.. At the bottom of the email I receive the last thing is the credit car info/type I would like below that to have the customers name in this format First name: customers first name Last name: customers last name Can anyone help?
Guest Posted August 6, 2004 Posted August 6, 2004 In catalog/checkout_process.php - around line 255: $email_order .= $payment_class->email_footer . "\n\n"; after this add: $email_order .= 'First name: ' . $order->customer['firstname'] . "\n"; $email_order .= 'Last name: ' . $order->customer['lastname'] . "\n\n"; Matti
Recommended Posts
Archived
This topic is now archived and is closed to further replies.