flex-template-web/ext/default-mail-templates/new-message/new-message-html.html
Boyan Tabakov 1202b6158f Move default mail templates to default directory
This makes it easier to merge changes to customization projects
2018-03-13 11:35:06 +02:00

19 lines
No EOL
529 B
HTML

<html>
<body>
{{#with message}}
<h1>You have a new message from {{sender.display-name}}</h1>
<blockquote>"{{content}}"</blockquote>
{{#eq recipient-role "customer"}}
<p><a href="{{marketplace.url}}/order/{{url-encode transaction.id}}/details">Reply to {{sender.display-name}}</a></p>
{{/eq}}
{{#eq recipient-role "provider"}}
<p><a href="{{marketplace.url}}/sale/{{url-encode transaction.id}}/details">Reply to {{sender.display-name}}</a></p>
{{/eq}}
{{/with}}
</body>
</html>