Mail templates html

Here are some common email templates in HTML:

Simple Email Template

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Email Template</title>
</head>
<body>
  <h1>Welcome to our email template!</h1>
  <p>This is a simple email template using HTML.</p>
  <p>Best regards,</p>
  <p>Your Name</p>
</body>
</html>

Newsletter Template

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Newsletter Template</title>
  <style>
    /* Add some basic styling to the template */
    body {
      font-family: Arial, sans-serif;
      width: 600px;
      margin: 0 auto;
      padding: 20px;
    }
  </style>
</head>
<body>
  <h1>Newsletter Template</h1>
  <p>Welcome to our newsletter!</p>
  <ul>
    <li><a href="#">Link 1</a></li>
    <li><a href="#">Link 2</a></li>
    <li><a href="#">Link 3</a></li>
  </ul>
  <p>Best regards,</p>
  <p>Your Name</p>
</body>
</html>

Confirmation Email Template

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Confirmation Email Template</title>
</head>
<body>
  <h1>Confirmation Email</h1>
  <p>Your account has been successfully created!</p>
  <p>Your username is: <span style="font-weight: bold;">{{username}}</span></p>
  <p>Your password is: <span style="font-weight: bold;">{{password}}</span></p>
  <p>Best regards,</p>
  <p>Your Name</p>
</body>
</html>

Reset Password Email Template

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Reset Password Email Template</title>
</head>
<body>
  <h1>Reset Password Email</h1>
  <p>You have requested to reset your password.</p>
  <p>Click the link below to reset your password:</p>
  <a href="{{reset_password_link}}">Reset Password</a>
  <p>Best regards,</p>
  <p>Your Name</p>
</body>
</html>

Transactional Email Template

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Transactional Email Template</title>
</head>
<body>
  <h1>Order Confirmation</h1>
  <p>Your order has been successfully processed!</p>
  <p>Order Number: {{order_number}}</p>
  <p>Total: {{total}}</p>
  <p>Best regards,</p>
  <p>Your Name</p>
</body>
</html>

These are just a few examples of email templates in HTML. You can customize them to fit your specific needs and branding. Remember to test your email templates in different email clients and devices to ensure they look and function as expected.