Hi everybody,
I have a fully functional shopping cart and I'm very pleased with it.
Now I want to change the look of the mail that's been sent.
I want the items that are in the cart on the confirmation mail to be bold and in the color red.
My guess is that it has to be changed somewhere in these lines of the script, but I cannot figure it out.....
Mayby someone can help me ??
$strMessageBody2 .= "===================================================================== \n";
$strMessageBody2 .= "$QUANTITY_1 x $NAME_1 (art. $ID_1) \n";
if( $NAME_2 ) {$strMessageBody2 .= "$QUANTITY_2 x $NAME_2 (art. $ID_2) \n";}
if( $NAME_3 ) {$strMessageBody2 .= "$QUANTITY_3 x $NAME_3 (art. $ID_3) \n";}
if( $NAME_4 ) {$strMessageBody2 .= "$QUANTITY_4 x $NAME_4 (art. $ID_4) \n";}
if( $NAME_5 ) {$strMessageBody2 .= "$QUANTITY_5 x $NAME_5 (art. $ID_5) \n";}
if( $NAME_6 ) {$strMessageBody2 .= "$QUANTITY_6 x $NAME_6 (art. $ID_6) \n";}
if( $NAME_7 ) {$strMessageBody2 .= "$QUANTITY_7 x $NAME_7 (art. $ID_7) \n";}
if( $NAME_8 ) {$strMessageBody2 .= "$QUANTITY_8 x $NAME_8 (art. $ID_8) \n";}
if( $NAME_9 ) {$strMessageBody2 .= "$QUANTITY_9 x $NAME_9 (art. $ID_9) \n";}
if( $NAME_10 ){$strMessageBody2 .= "$QUANTITY_10 x $NAME_10 (art. $ID_10) \n";}
if( $NAME_11 ){$strMessageBody2 .= "$QUANTITY_11 x $NAME_11 (art. $ID_11) \n";}
if( $NAME_12 ){$strMessageBody2 .= "$QUANTITY_12 x $NAME_12 (art. $ID_12) \n";}
if( $NAME_13 ){$strMessageBody2 .= "$QUANTITY_13 x $NAME_13 (art. $ID_13) \n";}
$strMessageBody2 .= "===================================================================== \n";
