# Email Marketing - How to Import Your Email Template via HTML

With SprintHub, you can easily import email templates created externally in HTML, ensuring convenience and efficiency in creating your Email Marketing campaigns. Bring your custom designs directly into our platform and reach your leads in a professional and impactful way.

To create your Email, follow the steps below:

1. **Access Email:** Through “Find Services”. Or just type the name, and the feature appears.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXdDa3x8wzm1HpPZ0CJ-Bay7dJ4vVL9v_0xodRFY8t9rq-E_RtdEKy5UO6-LAW2eDbhGTdZk9OlOdv01sB637BSB_-u1e_22O7OfeXDJ5R9EYR9GlIKsdJo6NYGDC0dHef_4DjCd0A?key=cZMN_WTdzGbG_4O77xmFxT-_" alt=""><figcaption></figcaption></figure>

2. In the “Emails” feature, you can select an existing email or create a new one. To edit an already created email, click 'Edit'. If you want to create a new email, just click '+ New'. Then click 'Open builder'.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXfd2bpmdTkWP-Uf6oBqNsWEc-ez2-CpiAOpC0cAXGifcv-zBrBMyM5kdqj25sSVqX7CGoWxmsoJ7pNnM902hsEMg7jxK6rw1nM9hmjBbt0QQSn-yQWuAzxwSO5JRRYfb25oY-uCZQ?key=cZMN_WTdzGbG_4O77xmFxT-_" alt=""><figcaption></figcaption></figure>

3. To add the line element to your email, just click and drag it into the construction area;

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXcuLVJP-WOibCCEhdb36XM1R_9srpGXmJ1ruNIeHFxeIUxsBVZPB3ZiT1S1P4JWT7e2-pu-a5RRNadM2dBXJT78zc0T-BF5_HmdjmaAs1FBlE9dky-_Ykz2z2U6_SYQndCHf8JLZg?key=cZMN_WTdzGbG_4O77xmFxT-_" alt=""><figcaption></figcaption></figure>

4. **Settings;**&#x20;

{% embed url="<https://youtu.be/siJsTqyM7tc>" %}

5. Result;

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXdtw3NYCzSXDtms6kh616_iIC8mie4tsf282L8ZAOHjB6HODqVJNg1QVScOoqoksHsDdsI7jNNe-YCbyW6O7occAnaM97O_Kl4M49qLivI0GrNvR6urXhHEC9lFh3AeZTkka2qeaA?key=cZMN_WTdzGbG_4O77xmFxT-_" alt=""><figcaption></figcaption></figure>

HTML example:

```
<!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>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        .header {
            background-color: #4CAF50;
            color: white;
            text-align: center;
            padding: 20px 10px;
        }
        .header h1 {
            margin: 0;
            font-size: 24px;
        }
        .content {
            padding: 20px;
            color: #333;
            line-height: 1.6;
        }
        .content img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 10px 0;
        }
        .content h2 {
            color: #4CAF50;
        }
        .footer {
            text-align: center;
            padding: 15px;
            background-color: #f4f4f4;
            color: #777;
            font-size: 12px;
        }
        .footer a {
            color: #4CAF50;
            text-decoration: none;
        }
        .button {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            margin: 10px 0;
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- Header -->
        <div class="header">
            <h1>Welcome to Our Service!</h1>
        </div>

        <!-- Content -->
        <div class="content">
            <h2>Hello, [User Name]!</h2>
            <p>We are very happy that you are here. Check below for some important details about our service.</p>
            
            <img src="https://via.placeholder.com/600x300" alt="Example image">
            
            <p>Enjoy the exclusive benefits we have prepared for you. Explore our website and discover everything we have to offer!</p>

            <a href="#" class="button">Learn More</a>
        </div>

        <!-- Footer -->
        <div class="footer">
            <p>If you have questions, contact us by email: <a href="mailto:support@example.com">support@example.com</a>.</p>
            <p>&copy; 2024 Our Service. All rights reserved.</p>
        </div>
    </div>
</body>
</html>

```

**CONCLUSION**

Using HTML to import email templates into SprintHub is an efficient solution for those seeking customization and control over their Email Marketing campaigns. This feature allows you to take advantage of exclusive and complex designs created externally, ensuring a professional visual experience aligned with your brand identity. Additionally, it speeds up the setup process, optimizing your time and effort when creating impactful communications for your leads. With SprintHub, creativity and efficiency go hand in hand.
