by Steven Nyland » Thu Feb 20, 2003 12:45 pm
Onlye change the $ into another currency symbol in the e-mail body section:
$strMessageBody .= "Qty Price(£) Product ID - Product Name\n";
Note that I removed the backslash!
Do not remove $ from strings else your script will return an error.
Also change the other cart details from the e-mail body section:
For instance:
if( $NAME_2 ) {$strMessageBody .= "$QUANTITY_2 \$$PRICE_2 $ID_2 - $NAME_2 $ADDTLINFO_2 \n";}
With the currency symbol replace:
if( $NAME_2 ) {$strMessageBody .= "$QUANTITY_2 £$PRICE_2 $ID_2 - $NAME_2 $ADDTLINFO_2 \n";}
Steven
[ If it ain't Dutch ... it ain't Much ]