You could try editing your order class file to include the CC type on the confirmation email:
in v1.3.0.2, includes/classes/order.php
line 921
change:
PHP Code:
$email_order .= $GLOBALS[$payment_class]->title . "\n\n";
to:
PHP Code:
$email_order .= $GLOBALS[$payment_class]->title . ' ' . $this->info['cc_type'] . "\n\n";
For the HTML emails, change line 931 from:
PHP Code:
$html_msg['PAYMENT_METHOD_DETAIL'] = (is_object($GLOBALS[$_SESSION['payment']]) ? $GLOBALS[$payment_class]->title : PAYMENT_METHOD_GV );
to:
PHP Code:
$html_msg['PAYMENT_METHOD_DETAIL'] = (is_object($GLOBALS[$_SESSION['payment']]) ? $GLOBALS[$payment_class]->title . $this->info['cc_type'] : PAYMENT_METHOD_GV );