zhuangjinxin / blog

:notebook: 个人博客 技术分享 整理笔记
http://blog.zhuangjinxin.top
7 stars 0 forks source link

HTML:<a>标签 快速发送邮件 #34

Closed zhuangjinxin closed 6 years ago

zhuangjinxin commented 6 years ago

积累总结:

<a href="mailto:邮箱?Body=邮件内容">发邮件</a>

参考案例: 百度ECharts官网首页http://echarts.baidu.com/,页面底部邮箱图标:

<a href="mailto:echarts@baidu.com?Body=%28Thanks%20for%20using%20ECharts.%20Email%20us%20if%20you%20have%20non-technical%20problems%20using%20ECharts.%20For%20technical%20support%2C%20please%20go%20to%20https%3A//github.com/ecomfe/echarts/issues%20.%29" class="footer-icon"><img src="images/icon-email.png"></a>

href URL解码后:

mailto:echarts@baidu.com?Body=(Thanks for using ECharts. Email us if you have non-technical problems using ECharts. For technical support, please go to https://github.com/ecomfe/echarts/issues .)