brotherton-erpnext/erpnext/templates/emails/request_for_quotation.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
922 B
HTML
Raw Normal View History

2020-09-28 10:29:03 +00:00
<h4>{{_("Request for Quotation")}}</h4>
<p>{{ supplier_salutation if supplier_salutation else ''}} {{ supplier_name }},</p>
2016-03-03 08:30:35 +00:00
<p>{{ message }}</p>
2020-09-28 10:29:03 +00:00
<p>{{_("The Request for Quotation can be accessed by clicking on the following button")}}:</p>
2020-09-28 10:29:03 +00:00
<p>
<button style="border: 1px solid #15c; padding: 6px; border-radius: 5px; background-color: white;">
<a href="{{ rfq_link }}" style="color: #15c; text-decoration:none;" target="_blank">Submit your Quotation</a>
2020-09-28 10:29:03 +00:00
</button>
</p><br>
<p>{{_("Regards")}},<br>
{{ user_fullname }}</p><br>
2016-03-03 08:30:35 +00:00
{% if update_password_link %}
2020-09-28 15:47:49 +00:00
<p>{{_("Please click on the following button to set your new password")}}:</p>
2020-09-28 10:29:03 +00:00
<p>
<button style="border: 1px solid #15c; padding: 4px; border-radius: 5px; background-color: white;">
<a href="{{ update_password_link }}" style="color: #15c; font-size: 12px; text-decoration:none;" target="_blank">{{_("Update Password") }}</a>
2020-09-28 10:29:03 +00:00
</button>
</p>
2020-09-28 15:47:49 +00:00
2020-09-28 10:29:03 +00:00
{% endif %}