Html 向网站添加“通过电子邮件共享”链接
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5045918/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Adding a 'share by email' link to website
提问by noobug
I have an HMTL / CSS website built in Dreamweaver CS4 and I would like to add a 'share by email' link to the site (so that anyone who clicks on it can easily send a link to the site to their chosen recipient). I would like one of those envelope icons, but preferably customisable in size so it would fit nicely with other icons I have.
我有一个内置于 Dreamweaver CS4 的 HMTL/CSS 网站,我想向该网站添加一个“通过电子邮件共享”链接(以便点击该网站的任何人都可以轻松地将指向该网站的链接发送给他们选择的收件人)。我想要这些信封图标之一,但最好在尺寸上进行自定义,以便与我拥有的其他图标很好地配合。
Please could someone kindly advise me as to what is the easiestway of doing this - I am a beginner. Thanks in advance.
请有人告诉我什么是最简单的方法 - 我是初学者。提前致谢。
回答by Brian Murphy
Something like this might be the easiest way.
像这样的事情可能是最简单的方法。
<a href="mailto:?subject=I wanted you to see this site&body=Check out this site http://www.website.com."
title="Share by Email">
<img src="http://png-2.findicons.com/files/icons/573/must_have/48/mail.png">
</a>
You could find another email image and add that if you wanted.
您可以找到另一个电子邮件图像,并根据需要添加该图像。
回答by Myles Gray
Easiest: http://www.addthis.com/
最简单:http: //www.addthis.com/
Best? Well. probably not, But If you don't want to design something bespoke this is the best there is...
最好的事物?好。可能不是,但如果你不想设计一些定制的东西,这是最好的......
回答by Megabonanza
<a target="_blank" title="Share this page" href="http://www.sharethis.com/share?url=[INSERT URL]&title=[INSERT TITLE]&summary=[INSERT SUMMARY]&img=[INSERT IMAGE URL]&pageInfo=%7B%22hostname%22%3A%22[INSERT DOMAIN NAME]%22%2C%22publisher%22%3A%22[INSERT PUBLISHERID]%22%7D"><img width="86" height="25" alt="Share this page" src="http://w.sharethis.com/images/share-classic.gif"></a>
Instructions
指示
First, insert these lines wherever you want within your newsletter code. Then:
首先,在您的时事通讯代码中的任何位置插入这些行。然后:
- Change "INSERT URL" to whatever website holds the shared content.
- Change "INSERT TITLE" to the title of the article.
- Change "INSERT SUMMARY" to a short summary of the article.
- Change "INSERT IMAGE URL" to an image that will be shared with the rest of the content.
- Change "INSERT DOMAIN NAME" to your domain name.
- Change "INSERT PUBLISHERID" to your publisher ID (if you have an account, if not, remove "[INSERT PUBLISHERID]" or sign up!)
- 将“插入 URL”更改为包含共享内容的任何网站。
- 将“INSERT TITLE”更改为文章的标题。
- 将“插入摘要”更改为文章的简短摘要。
- 将“INSERT IMAGE URL”更改为将与其余内容共享的图像。
- 将“插入域名”更改为您的域名。
- 将“INSERT PUBLISHERID”更改为您的发布商 ID(如果您有帐户,如果没有,请删除“[INSERT PUBLISHERID]”或注册!)
If you are using this on an email newsletter, make sure you add our sharing buttons to the destination page. This will ensure that you get complete sharing analytics for your page. Make sure you replace "INSERT PUBLISHERID" with your own.
如果您在电子邮件通讯中使用它,请确保将我们的共享按钮添加到目标页面。这将确保您获得完整的页面共享分析。确保将“INSERT PUBLISHERID”替换为您自己的。