老K博客 - 一个源码和技术分享的博客

使用在广告购买站和软件站的一些邮件html模板!

老K博客
2024-12-08 / 0 评论 / 25 阅读 / 正在检测是否收录...
广告

提现效果图

m4fbs7yq.png

源码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>老K博客 - 提现通知</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eef2f7;
            color: #333;
        }

        .container {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .header {
            margin-bottom: 20px;
        }

        .header img {
            width: 150px;
            height: auto;
        }

        h1, p {
            margin: 10px 0;
            line-height: 1.6;
        }

        h1 {
            font-size: 24px;
            color: #007BFF;
        }

        p {
            font-size: 16px;
        }

        a {
            color: #007BFF;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        hr {
            border: 0;
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }

        .footer {
            text-align: center;
            padding-top: 20px;
            color: #999;
            font-size: 14px;
        }

        .footer a {
            color: #999;
        }

        .footer a:hover {
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <img src="https://laokbk.cn/logo.png" alt="老K博客 Logo">
        </div>
       <h1>尊敬的<a>老K博客</a> ,您好:</h1>
        <p>您的提现申请已成功处理,金额已到账,请注意查收。</p>
        <p>如有任何疑问,请联系我们的客服团队。</p>
        <hr>
                <div class="footer">
            <p>本邮箱由 老K博客 系统自动发出,无需回复!</p>
            <p>Copyright © 2023 - 2024 <a href="http://laokbk.cn">老K博客</a> All Rights Reserved. 老K博客 版权所有</p>
        </div>
    </div>
</body>
</html>

应用审核效果图

m4fbutnf.png

源码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>老K博客 - 应用审核通知</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eef2f7;
            color: #333;
        }

        .container {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .header {
            margin-bottom: 20px;
        }

        .header img {
            width: 150px;
            height: auto;
        }

        h1, p {
            margin: 10px 0;
            line-height: 1.6;
        }

        h1 {
            font-size: 24px;
            color: #007BFF;
        }

        p {
            font-size: 16px;
        }

        a {
            color: #007BFF;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        hr {
            border: 0;
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }

        .footer {
            text-align: center;
            padding-top: 20px;
            color: #999;
            font-size: 14px;
        }

        .footer a {
            color: #999;
        }

        .footer a:hover {
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <img src="https://laokbk.cn/logo.png" alt="老K博客 Logo">
        </div>
       <h1>尊敬的<a>老K博客</a> ,您好:</h1>
        <p>您的应用【应用名称】已通过审核,现在可以在平台上发布和使用。</p>
        <p>如需查看详细信息,请登录控制台。</p>
        <hr>
                <div class="footer">
            <p>本邮箱由 老K博客 系统自动发出,无需回复!</p>
            <p>Copyright © 2023 - 2024 <a href="http://laokbkk.cn">老K博客</a> All Rights Reserved. 老K博客 版权所有</p>
        </div>
    </div>
</body>
</html>

验证码效果图

m4fbx3wg.png

源码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>老K博客 - 注册验证码通知</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eef2f7;
            color: #333;
        }

        .container {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .header {
            margin-bottom: 20px;
        }

        .header img {
            width: 150px;
            height: auto;
        }

        h1, p {
            margin: 10px 0;
            line-height: 1.6;
        }

        h1 {
            font-size: 24px;
            color: #007BFF;
        }

        p {
            font-size: 16px;
        }

        a {
            color: #007BFF;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        hr {
            border: 0;
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }

        .footer {
            text-align: center;
            padding-top: 20px;
            color: #999;
            font-size: 14px;
        }

        .footer a {
            color: #999;
        }

        .footer a:hover {
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <img src="https://laokbk.cn/logo.png" alt="老K博客 Logo">
        </div>
       <h1>尊敬的<a>老K博客</a> ,您好:</h1>
        <p>您的注册验证码为:<strong>123456</strong>,请在注册页面输入此验证码完成注册。</p>
        <p>验证码有效期为10分钟,过期请重新获取。</p>
        <hr>
                <div class="footer">
            <p>本邮箱由 老K博客 系统自动发出,无需回复!</p>
            <p>Copyright © 2023 - 2024 <a href="http://laokbk.cn">老K博客</a> All Rights Reserved. 老K博客 版权所有</p>
        </div>
    </div>
</body>
</html>

授权购买效果图

m4fc02pl.png

源码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>老K博客 - 购买授权通知</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eef2f7;
            color: #333;
        }

        .container {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .header {
            margin-bottom: 20px;
        }

        .header img {
            width: 150px;
            height: auto;
        }

        h1, p {
            margin: 10px 0;
            line-height: 1.6;
        }

        h1 {
            font-size: 24px;
            color: #007BFF;
        }

        p {
            font-size: 16px;
        }

        a {
            color: #007BFF;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        hr {
            border: 0;
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }

        .footer {
            text-align: center;
            padding-top: 20px;
            color: #999;
            font-size: 14px;
        }

        .footer a {
            color: #999;
        }

        .footer a:hover {
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <img src="https://laokbk.cn/logo.png" alt="老K博客 Logo">
        </div>
       <h1>尊敬的<a>老K博客</a> ,您好:</h1>
        <p>恭喜您,您的域名 234 已成功购买【序智应用Pro】授权,您可以正常搭建并使用。</p>
        <p>您可以前往控制台 <a href="#">我的授权</a> 中下载源码</p>
        <p>若有任何疑问,请联系我们的客服团队。</p>
        <hr>
                <div class="footer">
            <p>本邮箱由 老K博客 系统自动发出,无需回复!</p>
            <p>Copyright © 2023 - 2024 <a href="http://laokbk.cn">老K博客</a> All Rights Reserved. 老K博客 版权所有</p>
        </div>
    </div>
</body>
</html>
本文共 398 个字数,平均阅读时长 ≈ 1分钟
广告
0

海报

正在生成.....

评论 (0)

语录
取消
CC BY-NC-ND