seitime-frappe/frappe/templates/emails/email_footer.html
Ameya Shenoy 2ead222090 fix(email): Email status changes to Read (#6396)
The email recieved template was in unsubscribe email. Hence it
didn't used to function in case the emails were sent from DocTypes
like Issue, wherein the unsubscribe email template is not used.
Moved it to email_footer template.

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2018-11-05 10:49:18 +05:30

33 lines
690 B
HTML

<div class="email-footer-container text-muted">
<!-- email_account_footer -->
{% if email_account_footer %}
<div class="email-account-footer">
{{ email_account_footer }}
</div>
{% endif %}
<!-- company_address -->
{% if company_address %}
<div class="company-address">
{% for line in company_address.splitlines(True) %}
<div>{{ line }}</div>
{% endfor %}
</div>
{% endif %}
<!--unsubscribe link here-->
<div class="email-pixel">
<!--email open check-->
</div>
<!-- default_mail_footer -->
{% if default_mail_footer %}
<div class="default-mail-footer">
{% for line in default_mail_footer %}
<div>{{ line }}</div>
{% endfor %}
</div>
{% endif %}
</div>