如何在HTML mailto:subject和body中添加页面URL。

时间:2013-05-25 07:54:13

标签: javascript jquery html href mailto

如何在HTML mailto:subject和body中添加页面URL。

甚至需要添加一些动态变量值。

提前致谢

3 个答案:

答案 0 :(得分:1)

您可以将网址中的mailto用作: -

<a href="mailto:someone@example.com?Subject=Hello%20again">

它包含收件人地址和主题......我希望这有助于......:)

答案 1 :(得分:1)

你可以用它                          

        <body>

         <p>
          This is an email link:
         <a href="mailto:someone@example.com?Subject=Hello%20again">
                    Send Mail</a>
                   </p>



        </body>
        </html>

注意:单词之间的空格应替换为%20,以确保浏览器能够正确显示文本。

答案 2 :(得分:1)

添加主题和正文消息很容易。我发现每个单词之间没有%20就行了,但是使用它可能更安全。所以你可以试试这个:

<a href="mailto:email@mysite.com?subject=Hi there&amp;body=This is my body message">Email Us</a>

或者

<a href="mailto:email@mysite.com?subject=Hi%20there&amp;body=This%20is%20my%20body%20 message">Email Us</a>

请注意,我使用的是&amp;而不是&,因为只有&在网址中不受欢迎。 (无论如何,它无法验证。)