Search code examples
htmlemailmailto

HTML: "send to a friend" link


I need to add a "Send to a friend" link to my website.

When a user clicks on it, their e-mail software should open and the e-mail should be already filled.

Subject: Website Name Body: Link to website, short description

is that possible ? thanks


Solution

  • <a href="mailto:enteryour@addresshere.com?subject=Website Name&body=Link to website, short description">Send me an email</a>
    

    Is one way.