Files
mayan-edms/mayan/apps/mailer/literals.py
2017-07-12 02:50:29 -04:00

19 lines
531 B
Python

from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
DEFAULT_DOCUMENT_BODY_TEMPLATE = _(
'Attached to this email is the document: {{ document }}\n\n '
'--------\n '
'This email has been sent from %(project_title)s (%(project_website)s)'
)
DEFAULT_LINK_BODY_TEMPLATE = _(
'To access this document click on the following link: '
'{{ link }}\n\n--------\n '
'This email has been sent from %(project_title)s (%(project_website)s)'
)
EMAIL_SEPARATORS = (',', ';')