在 HTML 内使用 php mailto link

Use php inside HTML mailto link

我正在使用 HTML mailto link 并且想在里面使用 php 来显示电子邮件的 $_SESSION[''] 信息。

        <p>You do not currently have permission to access this tool.</p>
        <p>Please contact admin at
        <a href="mailto:test@gmail.com?
        &subject=Requesting%20access%20to%20the%20page_access%20tool
        &body=Hi,%0D%0A%0D%0AThis%20is%20<?php$_SESSION['email']?>.%20Please%20provide%20me%20access%20to%20the%20tool.">
        uas.hub@gmail.com</a>
        to request access to this page.</p>

目前这显示在电子邮件中: 这是<?php$_SESSION['email']?>。请向我提供该工具的访问权限。

如何只显示电子邮件而不显示所有 php 代码?

您的代码中没有echo

<?php echo $_SESSION['email']; ?>