ajout app
This commit is contained in:
1
Voltaserve/api/templates/join-organization/params.yml
Normal file
1
Voltaserve/api/templates/join-organization/params.yml
Normal file
@ -0,0 +1 @@
|
||||
subject: "Invitation to join a Voltaserve organization"
|
41
Voltaserve/api/templates/join-organization/template.html
Normal file
41
Voltaserve/api/templates/join-organization/template.html
Normal file
@ -0,0 +1,41 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
.container {
|
||||
font-family: "IBM Plex Sans", sans-serif;
|
||||
font-size: 14px;
|
||||
color: black;
|
||||
width: 580px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.link {
|
||||
color: #0c4cf3 !important;
|
||||
}
|
||||
.link:visited {
|
||||
color: #0c4cf3 !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<p>Hello,</p>
|
||||
<p>
|
||||
You have been invited by <b>{{.USER_FULL_NAME}}</b> to join the
|
||||
organization <b>{{.ORGANIZATION_NAME}}</b>. Please follow this link to
|
||||
view your incoming invitations:
|
||||
</p>
|
||||
<p>
|
||||
<a class="link" href="{{.UI_URL}}/account/invitation">
|
||||
View incoming invitations
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
2
Voltaserve/api/templates/join-organization/template.txt
Normal file
2
Voltaserve/api/templates/join-organization/template.txt
Normal file
@ -0,0 +1,2 @@
|
||||
You have been invited by {{.USER_FULL_NAME}} to join the organization {{.ORGANIZATION_NAME}}.
|
||||
Please follow this link to sign up: {{.UI_URL}}/sign-up
|
@ -0,0 +1 @@
|
||||
subject: "Invitation to join a Voltaserve organization"
|
@ -0,0 +1,39 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
.container {
|
||||
font-family: "IBM Plex Sans", sans-serif;
|
||||
font-size: 14px;
|
||||
color: black;
|
||||
width: 580px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.link {
|
||||
color: #0c4cf3 !important;
|
||||
}
|
||||
.link:visited {
|
||||
color: #0c4cf3 !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<p>Hello,</p>
|
||||
<p>
|
||||
You have been invited by <b>{{.USER_FULL_NAME}}</b> to join the
|
||||
organization <b>{{.ORGANIZATION_NAME}}</b> in Voltaserve. Please follow
|
||||
this link to sign up:
|
||||
</p>
|
||||
<p>
|
||||
<a class="link" href="{{.UI_URL}}/sign-up">Sign up</a>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,2 @@
|
||||
You have been invited by {{.USER_FULL_NAME}} to join the organization {{.ORGANIZATION_NAME}}.
|
||||
Please follow this link to view your incoming invitations: {{.UI_URL}}/account/incoming-invitations
|
Reference in New Issue
Block a user