[FIX] mail, mass_mailing: do not add a link to access the document
authorThibault Delavallée <tde@openerp.com>
Thu, 14 Aug 2014 09:29:00 +0000 (11:29 +0200)
committerThibault Delavallée <tde@openerp.com>
Thu, 14 Aug 2014 09:29:00 +0000 (11:29 +0200)
when the email is not a notification, or not an email usign the automatic
threading. This means that when doing mass mailing with a fixed reply_to
there won't be any link to access the original document, which is what
we want. Otherwise when mailing partners, they have a link to access
their own partner profile, which does not make sense.

addons/mail/mail_mail.py

index cfc7a5f..fe931fa 100644 (file)
@@ -177,8 +177,10 @@ class mail_mail(osv.Model):
         is to be inherited to add custom content depending on some module."""
         body = mail.body_html
 
-        # generate footer
-        link = self._get_partner_access_link(cr, uid, mail, partner, context=context)
+        # generate access links for notifications or emails linked to a specific document with auto threading
+        link = None
+        if mail.notification or (mail.model and mail.res_id and not mail.no_auto_thread):
+            link = self._get_partner_access_link(cr, uid, mail, partner, context=context)
         if link:
             body = tools.append_content_to_html(body, link, plaintext=False, container_tag='div')
         return body