File size: 2,399 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
    <style>

        body {

            font-family: 'Arial', sans-serif;

            line-height: 16pt;

            color: #374151;

            background-color: #E5E7EB;

            margin: 0;

            padding: 0;

        }

        .container {

            width: 100%;

            max-width: 560px;

            margin: 40px auto;

            padding: 20px;

            background-color: #F3F4F6;

            border-radius: 8px;

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

        }

        .header {

            text-align: center;

            margin-bottom: 20px;

        }

        .header img {

            max-width: 100px;

            height: auto;

        }

        .button {

            display: inline-block;

            padding: 12px 24px;

            background-color: #2970FF;

            color: white;

            text-decoration: none;

            border-radius: 4px;

            text-align: center;

            transition: background-color 0.3s ease;

        }

        .button:hover {

            background-color: #265DD4;

        }

        .footer {

            font-size: 0.9em;

            color: #777777;

            margin-top: 30px;

        }

        .content {

            margin-top: 20px;

        }

    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <!-- Optional: Add a logo or a header image here -->
            <img src="https://cloud.dify.ai/logo/logo-site.png" alt="Dify Logo">
        </div>
        <div class="content">
            <p>Dear {{ to }},</p>
            <p>{{ inviter_name }} is pleased to invite you to join our workspace on Dify, a platform specifically designed for LLM application development. On Dify, you can explore, create, and collaborate to build and operate AI applications.</p>
            <p>You can now log in to Dify using the GitHub or Google account associated with this email.</p>
            <p style="text-align: center;"><a style="color: #fff; text-decoration: none" class="button" href="{{ url }}">Login Here</a></p>
        </div>
        <div class="footer">
            <p>Best regards,</p>
            <p>Dify Team</p>
            <p>Please do not reply directly to this email; it is automatically sent by the system.</p>
        </div>
    </div>
</body>

</html>