vrn-sh / erp

collaborative platform for pentesters to share knowledge and automate tasks
https://voron.djnn.sh
MIT License
3 stars 1 forks source link

[2JH] Sendgrid template for mailing list #331

Closed djnnvx closed 6 months ago

djnnvx commented 11 months ago

Describe the issue

This is the template that will be used by the mailing list, when we want to send an email to the users that have subscribed to the mailing list.

Definition of done

JEH

2

djnnvx commented 11 months ago
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet'>
    <link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700" rel="stylesheet">
    <style>
        .body-style{
            background-color:#fcfbfd;
            margin: 70px;
            display: grid;
            font-size: 18px;
            font-family: 'Inconsolata'
        }
        .header{
            align-items: center;
            text-align: center;
            border-bottom: 1px solid black;
            font-family: 'Poppins';
        }
        .header h1{
            margin: 0;
            font-family: 'Poppins';
            font-weight: 700;
        }
        .content-div{
            display: grid;
            align-items:flex-start;
        }
        .img{
            align-self: center;
            width: 100px;
            height: 100px;
            margin-left: 45%;
        }
        .btn{
            width: 200px;
            height: 50px;
            margin-left: 40%;
            background: #7c44f3;
            border: none;
            border-radius: 5px;
        }
        .skipline {
            padding: 12px 12px 12px 12px;   
        }
    </style>
</head>

<body class="body-style">
    <header class="header">
        <h1>VORON</h1>
    </header>
    <br>

    <span class="skipline"></span>
    <div class="content-div">
        <span>  Hello {{username}},</span>
        <span class="skipline"></span>

        <br><span>Welcome to Voron, the security testing platform for cybersecurity professionals.<br/>
        Please confirm your account here:</span><br/>
        <span class="skipline"></span>

        <a href={{url}}>
            <input type="button" value="Confirm account" class="btn"/>
        </a> 
        <span class="skipline"></span>

        <span>If you have any questions or concerns, please feel free to contact us at any time.</span><br/>
        <span class="skipline"></span>

        <span>Sincerely,</span><br/>
        <span>The Voron Team</span>
    </div>
</body>
</html>