美文网首页
html发送邮件通过Mailto简单实现

html发送邮件通过Mailto简单实现

作者: PHP9年架构师 | 来源:发表于2020-06-20 21:14 被阅读0次

    给客户的页脚的邮箱加上点击发送邮件功能,有简单的链接和复杂的链接,对于复杂链接有详细的参数说明,感兴趣的朋友可以参考下 最近给客户的页脚的邮箱加上点击发送邮件功能,自己百度了下,解决方法很简单

    1简单的做个链接就行了

    web前端全栈资料粉丝福利(面试题、视频、资料笔记、进阶路线)

    <a href="Mailto:test@163.com">给我发邮件</a>

    2. 复杂的链接

    代码如下:

    <pre name="code" class="html"><a href="Mailto:test@163.com?CC=test@163.com&BCC=test@163.com&Subject=Hello&Body=你好">给我发邮件</a></pre>

    <pre></pre>

    参数说明:

    <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">

    </p>

    <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">

    CC:抄送地址;</p>

    <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">

    BCC:密件抄送地址;</p>

    <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">

    Subject:主题;</p>

    <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">

    Body:邮件内容。</p>

    <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px">

    注:多个邮件地址用";"隔开。</p>

    以上就是html发送邮件通过Mailto简单实现的详细内容,更多请关注我!!

    相关文章

      网友评论

          本文标题:html发送邮件通过Mailto简单实现

          本文链接:https://www.haomeiwen.com/subject/slngxktx.html