chore: align email footers with contact link

This commit is contained in:
Radosław Gierwiało
2025-12-06 17:12:07 +01:00
parent 3ee2be89e0
commit 7766e97556
4 changed files with 10 additions and 2 deletions

View File

@@ -51,6 +51,7 @@ function generatePasswordResetEmail(data) {
</div> </div>
<div class="footer"> <div class="footer">
<p>spotlight.cam - P2P video exchange for dance events</p> <p>spotlight.cam - P2P video exchange for dance events</p>
<p><a href="https://spotlight.cam/contact">Need help? Contact us</a></p>
<p>This is an automated email. Please do not reply.</p> <p>This is an automated email. Please do not reply.</p>
</div> </div>
</div> </div>
@@ -73,6 +74,7 @@ If you didn't request this password reset, please ignore this email. Your passwo
--- ---
spotlight.cam - P2P video exchange for dance events spotlight.cam - P2P video exchange for dance events
Need help? https://spotlight.cam/contact
This is an automated email. Please do not reply. This is an automated email. Please do not reply.
`; `;

View File

@@ -71,6 +71,7 @@ function generateRecordingSuggestionsEmail(data) {
</div> </div>
<div class="footer"> <div class="footer">
<p>spotlight.cam - P2P video exchange for dance events</p> <p>spotlight.cam - P2P video exchange for dance events</p>
<p><a href="${frontendUrl}/contact">Need help? Contact us</a></p>
<p>This is an automated email. Please do not reply.</p> <p>This is an automated email. Please do not reply.</p>
</div> </div>
</div> </div>
@@ -98,6 +99,7 @@ Please review them at your earliest convenience.
--- ---
spotlight.cam - P2P video exchange for dance events spotlight.cam - P2P video exchange for dance events
Need help? ${frontendUrl}/contact
This is an automated email. Please do not reply. This is an automated email. Please do not reply.
`; `;

View File

@@ -62,6 +62,7 @@ function generateVerificationEmail(data) {
</div> </div>
<div class="footer"> <div class="footer">
<p>spotlight.cam - P2P video exchange for dance events</p> <p>spotlight.cam - P2P video exchange for dance events</p>
<p><a href="https://spotlight.cam/contact">Need help? Contact us</a></p>
<p>This is an automated email. Please do not reply.</p> <p>This is an automated email. Please do not reply.</p>
</div> </div>
</div> </div>
@@ -86,6 +87,7 @@ Didn't create an account? You can safely ignore this email.
--- ---
spotlight.cam - P2P video exchange for dance events spotlight.cam - P2P video exchange for dance events
Need help? https://spotlight.cam/contact
This is an automated email. Please do not reply. This is an automated email. Please do not reply.
`; `;

View File

@@ -63,7 +63,8 @@ function generateWelcomeEmail(data) {
</div> </div>
<div class="footer"> <div class="footer">
<p>spotlight.cam - P2P video exchange for dance events</p> <p>spotlight.cam - P2P video exchange for dance events</p>
<p>Questions? Check out our FAQ or contact support.</p> <p><a href="${frontendUrl}/contact">Need help? Contact us</a></p>
<p>This is an automated email. Please do not reply.</p>
</div> </div>
</div> </div>
</body> </body>
@@ -92,7 +93,8 @@ Happy dancing! 💃🕺
--- ---
spotlight.cam - P2P video exchange for dance events spotlight.cam - P2P video exchange for dance events
Questions? Check out our FAQ or contact support. Need help? ${frontendUrl}/contact
This is an automated email. Please do not reply.
`; `;
return { subject, htmlBody, textBody }; return { subject, htmlBody, textBody };