mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-18 14:33:24 +00:00
d01d6dd9d1
Add notice to email notifications that recording link sharing is not supported in beta to prevent user confusion.
78 lines
2.6 KiB
XML
78 lines
2.6 KiB
XML
<mjml>
|
|
<mj-include path="./partial/header.mjml" />
|
|
|
|
<mj-body mj-class="bg--blue-100">
|
|
<mj-wrapper css-class="wrapper" padding="5px 25px 0px 25px">
|
|
<mj-section css-class="wrapper-logo">
|
|
<mj-column>
|
|
<mj-image
|
|
align="center"
|
|
src="{{logo_img}}"
|
|
width="320px"
|
|
alt="{%trans 'Logo email' %}"
|
|
/>
|
|
</mj-column>
|
|
</mj-section>
|
|
<mj-section mj-class="bg--white-100" padding="0px 20px 60px 20px">
|
|
<mj-column>
|
|
<mj-text align="center">
|
|
<h1>{% trans "Your recording is ready!"%}</h1>
|
|
</mj-text>
|
|
<!-- Main Message -->
|
|
<mj-text>
|
|
{% blocktrans %}
|
|
Your recording of "{{room_name}}" on {{recording_date}} at {{recording_time}} is now ready to download.
|
|
{% endblocktrans %}
|
|
{% if recording_expiration_days %}
|
|
{% blocktrans with days=recording_expiration_days %}
|
|
The recording will expire in {{days}} days.
|
|
{% endblocktrans %}
|
|
{% endif %}
|
|
</mj-text>
|
|
<mj-text>
|
|
{% blocktrans %}
|
|
Sharing the recording via link is not yet available. Only organizers can download it.
|
|
{% endblocktrans %}
|
|
</mj-text>
|
|
<mj-text>
|
|
<p>{% trans "To keep this recording permanently:" %}</p>
|
|
<ol>
|
|
<li>{% blocktrans %}Click the "Open" button below {% endblocktrans %}</li>
|
|
<li>{% blocktrans %}Use the "Download" button in the interface {% endblocktrans %}</li>
|
|
<li>{% blocktrans %}Save the file to your preferred location{% endblocktrans %}</li>
|
|
</ol>
|
|
</mj-text>
|
|
<mj-button
|
|
href="{{link}}"
|
|
background-color="#000091"
|
|
color="white"
|
|
padding-bottom="30px"
|
|
>
|
|
{% trans "Open"%}
|
|
</mj-button>
|
|
<mj-text>
|
|
{% blocktrans %}
|
|
If you have any questions or need assistance, please contact our support team at {{support_email}}.
|
|
{% endblocktrans %}
|
|
</mj-text>
|
|
<mj-divider
|
|
border-width="1px"
|
|
border-style="solid"
|
|
border-color="#DDDDDD"
|
|
width="30%"
|
|
align="center"
|
|
/>
|
|
<!-- Signature -->
|
|
<mj-text>
|
|
<p>
|
|
{% blocktrans %}
|
|
Thank you for using {{brandname}}.
|
|
{% endblocktrans %}
|
|
</p>
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
</mj-wrapper>
|
|
</mj-body>
|
|
</mjml>
|