51 lines
4.0 KiB
HTML
Executable File
51 lines
4.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Email Template</title>
|
|
<style>
|
|
@import url("https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@100;300;400;500;600;700;800&display=swap");
|
|
article { color: #616161; line-height: 18px; }
|
|
article b { color: #252525; }
|
|
</style>
|
|
</head>
|
|
<body style="margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;font-size: 16px;">
|
|
<div style="max-width: 70vw; box-shadow: 0px 4px 27px 0px #00000040; margin: 16px auto;">
|
|
<img src="https://uidemos.s3.ap-south-1.amazonaws.com/v2_512.png" style="width: 100%;">
|
|
<!-- <h1 style="font-size: 18px; font-weight: 700; text-align: center; margin: auto; color: #33B0CA;">CONGRATULATIONS! <br>Your Premise is now live!!!</h1> -->
|
|
<h1 style="font-size: 1.25em; font-weight: 800; text-align: center; margin: auto; color: #33B0CA;"><b>{{title1}}</b></h1>
|
|
<h2 style="font-size: 1.25em; font-weight: 800; text-align: center; margin: auto; color: #33B0CA;"><b>{{title2}}<br></b></h2>
|
|
<div style="padding: 28px">
|
|
<div style="text-align: center;">
|
|
<img src="{{doodleurl}}" style="width: 235px; height: 245px;">
|
|
</div>
|
|
<article>
|
|
<!-- <h2 style="font-size: 16px; font-weight: 500; color: #252525; margin-bottom: 16px;">Dear {{User}},</h2>
|
|
<p style="font-size: 14px; font-weight: 400; color: #616161; margin-bottom: 16px;">CONGRATULATIONS! We are thrilled to welcome you to MNF, your gateway to a smoother sail on your filmmaking journey.</p>
|
|
<p style="font-size: 14px; font-weight: 400; color: #616161; margin-bottom: 16px;">Thank you for choosing us. By signing up, you've taken the first step towards the world of filmmaking made easy with AI. Your journey with MNF starts here, and we promise to make every moment worthwhile.</p>
|
|
<p style="font-size: 14px; font-weight: 400; color: #616161; margin-bottom: 16px;">Explore our features, connect with the community, and unlock a plethora of benefits tailored just for you.</p>
|
|
<p style="font-size: 14px; font-weight: 400; color: #616161; margin-bottom: 16px;">Should you have any questions or need assistance, our support team is ready to help. Feel free to reach out at any time.</p>
|
|
<p style="font-size: 14px; font-weight: 400; color: #616161; margin-bottom: 16px;">Get ready for an amazing ride with MNF!</p>
|
|
<h2 style="font-size: 16px; font-weight: 500;">Thanks and Regards <br>Team MyNextFilm</h2> -->
|
|
{% load custom_filters %}
|
|
{% with pattern="\[(.*?)\]\((.*?)\)" %}
|
|
{% with modified_value=invitation|urlize_text|safe %}
|
|
<p>{{ modified_value|safe }}</p>
|
|
{% endwith %}
|
|
{% with modified_value=additional|urlize_text|safe %}
|
|
<p>{{ modified_value|safe }}</p>
|
|
{% endwith %}
|
|
{% endwith %}
|
|
</article>
|
|
</div>
|
|
<!-- <p style="font-size: 14px; font-weight: 400; color: #616161; padding: 0 28px;">Got an amazing Premise? <a href="https://mynextfilm.ai/ideamall/#/premise-pool">Share it in the premise pool!!!</a></p> -->
|
|
<div style="text-align: center; margin-bottom: 24px;">
|
|
<img src="{{poster}}" style="border-radius: 8px; width: 90%;">
|
|
</div>
|
|
<footer style="font-size: 16px; font-weight: 500; color: #FAFAFA; background: #33B0CA; text-align: center; padding: 12px 0;">
|
|
For any related queries, please reach out to .<a href="mailto:support@mynextfilm.ai" target="_blank" style="font-weight: 700; text-decoration: underline; color: #FAFAFA;">"MY NEXT FILM PRIVATE LIMITED".</a><span style="opacity:0.05; display: inline-block;">{{emailcode}}<span>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |