我有cakephp的电子邮件模板
<span style="padding:8px 12px 8px 12px;background:#3030a7;border-radius:4px">
<?= $this->Html->link("DOWNLOAD APP",
'itms-services://?action=download-manifest&url=https://www.example.com/40843.plist', ['style'=>'color:white']) ?>
</span>
但奇怪的是,当我运行该程序时,这就是我从谷歌邮件中得到的
<span style="padding:8px 12px 8px 12px;background:#3030a7;border-radius:4px">
<a style="color:white">DOWNLOAD APP</a>
</span>
正如您所注意到的,所有重要属性都是&#39; href&#39;不见了。是因为电子邮件类不支持它吗?我错过了什么?
答案 0 :(得分:1)
下载应用程序的直接链接并不适用于某个电子邮件服务提供商。
因此我通常会添加常规链接,例如&#34; http://example.com/link-to-download-the-app&#34;并为链接创建一个网页,然后当用户单击该链接时,该用户就是您的。