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

时间:2018-07-04 14:26:53

标签: php wordpress wordpress-theming share

我的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>

1 个答案:

答案 0 :(得分:0)

我已经看到,您错过了添加收件人电子邮件地址的操作。 代码应该是

<a class="btn btn-mail" href="mailto:someone@example.com?subject=<?php print(urlencode(the_title())); ?>&body=Check out this article: <?php print(urlencode(get_permalink())); ?>"> BUTTON HERE </a>

尝试一下,然后让我知道结果。