Quote Originally Posted by bi11i View Post
would there be an easy way to
1. turn off plain-text mails?
Correct to create content for the text version separately, and separately for html-version. But these changes in the two lines do not fit.

Quote Originally Posted by bi11i View Post
would there be an easy way to
2. change the email content to remove the duplicate content
PHP Code:
$mline .= $basket->fields['customers_basket_quantity'] . ' x ' $products->fields['name'] . "\n";
$mline .= '   <blockquote><a href="' zen_catalog_href_link(FILENAME_PRODUCT_INFO'products_id='$basket->fields['products_id']) . '">' zen_catalog_href_link(FILENAME_PRODUCT_INFO'products_id='$basket->fields['products_id']) . "</a></blockquote>\n\n"
replace by
PHP Code:
$mline .= $basket->fields['customers_basket_quantity'] . ' x ' '<a href="' zen_catalog_href_link(FILENAME_PRODUCT_INFO'products_id='$basket->fields['products_id']) . '">' $products->fields['name'] . '</a>' "\n"