Add user-joined email template [skip ci]

This commit is contained in:
Boyan Tabakov 2018-01-05 12:58:30 +02:00
parent 8f401bc31a
commit 2c5348de3e
4 changed files with 20 additions and 0 deletions

View file

@ -93,6 +93,10 @@ to verify their email address.
Sent to a user after they sign up for an account in the marketplace and
instructs them to verify their email address.
#### user-joined
Sent to a new marketplace user after they verify their email address.
### Transaction engine mails
The templates in the list below correspond to mails defined in the default

View file

@ -0,0 +1,9 @@
<html>
<body>
<p>Hello {{recipient.first-name}},</p>
<p>Welcome to <em>{{marketplace.name}}</em>!</p>
<p>Best regards,<br />The {{marketplace.name}} team</p>
</body>
</html>

View file

@ -0,0 +1 @@
Welcome to {{marketplace.name}}

View file

@ -0,0 +1,6 @@
Hello {{recipient.first-name}},
Welcome to {{marketplace.name}}!
Best regards,
The {{marketplace.name}} team