微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

HTML 电子邮件中的深层链接未在移动设备上打开应用程序

如何解决HTML 电子邮件中的深层链接未在移动设备上打开应用程序

我的 HTML 表单中嵌入了一个深层链接,它是通​​过 nodeJS 上的 SendGrid API 提交的。

虽然用户能够收到电子邮件,但他们无法点击它。

        <!DOCTYPE html>
        <html>
            <head>
                <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
                <Meta name="viewport" content="width=device-width,initial-scale=1.0">
           </head>
           <body>
                <div class="main">
                <div>
                    <h1>Welcome to Example</h1>
                    <button disabled style="font-size:20px;">Connect</button>
                </div>
                <div class="content">
                    <p>A request to reset your password has been made. If you did not make this request,simply ignore this email. If you did make this request,please reset your password below.</p>
                </div>
                <div>
                <form action="exampleapp://resetpassword/" target="_blank">
                    <input type="submit" value="Reset Password" style="background: #00008B; padding: 10px 50px; border: none; color: #FFF"/>
                </form>
                </div>
                <div>
                    <h2><a href="https://www.example.com/en" target="_blank">Example Here</a></h2>
                </div>
                </div>
            </body>
            <footer>
                <div>
                    <p>Having trouble viewing this email?</p>
                    <a href="#">Contact our support team.</a>
                </div>
            </footer>
        </html>

我曾尝试将 <form><input /></form> 更改为 <a href="exampleapp://resetpassword/">,但无济于事。

请帮忙,谢谢

解决方法

我使用 AWS 和 NodeJS 创建了一个自定义解决方案。

有关详细信息,请阅读https://roycjh.medium.com/how-to-direct-users-from-email-to-your-mobile-app-or-website-using-deep-links-2727af0fc74a

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。