Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
How do you add a "e-mail this page" to a Web page?
Many websites have the functionality to "e-mail this page" to someone else. It appears that even Yahoo! Answers lets users do this as well. What coding is needed to grab either the URL or all the page contents inorder to send via email to someone?
3 Answers
- Anonymous2 decades agoFavorite Answer
gecko_au2003 is wrong Ahkens is right,
mailto works with any mail program including web-based ones like yahoo...
- gecko_au2003Lv 52 decades ago
the mailto tag will only work if they have outlook installed :) I think its better to use cgi ( but then your web space has to support cgi , or whatever method you use to email the URL of the current page to there email addy )
www.htmlgoodies.com and www.w3schools.com are 2 good places to look for resources / info on how to :)
- AhkensLv 42 decades ago
You can add an e-mail link using HTML. Replace anything in brackets, including the brackets:
<a href="mailto:[e-mail_address]" >[Text Link]</a>
Source(s): Personal experience.