fix: modify var name

This commit is contained in:
Kilu 2024-04-28 17:28:48 +08:00
parent 34151117fb
commit ce5bd1a879
2 changed files with 8 additions and 8 deletions

View File

@ -73,7 +73,7 @@
</td> </td>
<td style="width: 58.333333%"> <td style="width: 58.333333%">
<div style="margin-bottom: 8px; font-weight: 700"> <div style="margin-bottom: 8px; font-weight: 700">
{{ wokspace_name }} {{ workspace_name }}
</div> </div>
<div style="font-size: 14px; color: #64748b"> {{ workspace_member_count }} members</div> <div style="font-size: 14px; color: #64748b"> {{ workspace_member_count }} members</div>
</td> </td>
@ -181,4 +181,4 @@
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -21,12 +21,12 @@ module.exports = {
}, },
locals: { locals: {
cdnBaseUrl: 'https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Cloud/main/assets/mailer_templates/build_production/', cdnBaseUrl: 'https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Cloud/main/assets/mailer_templates/build_production/',
userIconUrl: "{{ .UserIconURL }}", userIconUrl: "{{ user_icon_url }}",
userName: "{{ .UserName }}", userName: "{{ username }}",
acceptUrl: "{{ .AcceptUrl }}", acceptUrl: "{{ accept_url }}",
workspaceName: "{{ .WorkspaceName }}", workspaceName: "{{ workspace_name }}",
workspaceMembersCount: "{{ .WorkspaceMembersCount }}", workspaceMembersCount: "{{ workspace_member_count }}",
workspaceIconURL: "{{ .WorkspaceIconURL }}", workspaceIconURL: "{{ workspace_icon_url }}",
}, },
inlineCSS: true, inlineCSS: true,
removeUnusedCSS: true, removeUnusedCSS: true,