WordPress电子邮件共享按钮无法在Outlook中打开

问题描述 投票:0回答:1

我的single.php文件中有一个自定义共享按钮片段。它适用于其他电子邮件应用程序,而不是Microsoft Outlook。有任何想法吗?

<a class="btn btn-mail" href="mailto:?subject=<?php print(urlencode(the_title())); ?>&body=Check out this article: <?php print(urlencode(get_permalink())); ?>"> BUTTON HERE </a>
php wordpress wordpress-theming share
1个回答
0
投票

我已经看到了,你错过了添加接收者的电子邮件地址。代码应该是

<a class="btn btn-mail" href="mailto:[email protected]?subject=<?php print(urlencode(the_title())); ?>&body=Check out this article: <?php print(urlencode(get_permalink())); ?>"> BUTTON HERE </a>

试试这个然后让我知道结果。

© www.soinside.com 2019 - 2024. All rights reserved.