[FIX] mail, mass_mailing: do not add a link to access the document

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.
This commit is contained in:
Thibault Delavallée 2014-08-14 11:29:00 +02:00
parent bb30c858b3
commit a574f83b0b
1 changed files with 4 additions and 2 deletions

View 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