我的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>
我已经看到了,你错过了添加接收者的电子邮件地址。代码应该是
<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>
试试这个然后让我知道结果。