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

24 lines
874 B
HTML
Raw Normal View History

2020-09-28 15:59:03 +05:30
<h4>{{_("Request for Quotation")}}</h4>
<p>{{_("Dear")}} {{ salutation if salutation else ''}} {{ supplier }},</p>
2016-03-03 14:00:35 +05:30
<p>{{ message }}</p>
2020-09-28 15:59:03 +05:30
<p>{{_("The request for quotation can be accessed by clicking on the following link")}}:</p>
<p>
<button style="border: 1px solid #15c; padding: 6px; border-radius: 5px; background-color: white;">
<a href="{{ rfq_link }}" style="color: #15c" target="_blank">Submit your Quotation</a>
</button>
</p><br>
<p>{{_("Regards")}},<br>
{{ user_fullname }}</p><br>
2016-03-03 14:00:35 +05:30
{% if update_password_link %}
2020-09-28 15:59:03 +05:30
<div>
2016-03-03 14:00:35 +05:30
<p>{{_("Please click on the following link to set your new password")}}:</p>
2020-09-28 15:59:03 +05:30
<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;" target="_blank">{{_("Update Password") }}</a>
</button>
</p>
</div>
{% endif %}