Hello, i want to add something to this topic:
gladiator's solution is good but it only send product link in email for customer not for admin.
I searched how to add link to admin new order messege.
This is my solution (presta 1.5.4 - difrence in newest version is only row number)
1. Open modules/mailalerts/mailalerts.php
2. After 279 row ($items_table = '';) add
$link = new Link();
3. Replace 311-313 lines
.$product['product_name'].(isset($product['attributes_small']) ? ' '.$product['attributes_small'] : '').(!empty($customization_text) ? '<br />'.$customization_text : '').
to this:
<strong><a href="'.$link->getProductLink($product['id_product']).'">'.$product['product_name'].(isset($product['attributes_small']) ? ' '.$product['attributes_small'] : '').(!empty($customization_text) ? '<br />'.$customization_text : '').'</a></strong>
It should work fine