|
Author |
Message |
xarzu

Joined: 17 May 2007
Posts: 18
|
Posted: Sun Feb 24, 2008 2:06 pm Post subject: mailto in html |
|
|
I am trying to use the tag "mailto" in an HTML file to prompt the user to email me. Specifically, I want to have the subject and the body of the email message already filled in when the user sends me the email.
So far, I have managed to have a hyperlink where the body is already filled in:
Code: |
<a href="mailto::username@gmail.com?body='test'">this works</a> | I have also managed to have a hyperlink where the subject line is already filled in:
Code: | <a href="mailto:usernamegmail.com?subject='the subject'">this works too</a> |
But I have yet to figure out how do combine the two:
Code: | <a href="mailto::username@gmail.com?subject='the subject and
the body'?body='test'">help</a> |
Does anyone know how to do this? |
|
|
|
 |
Patrick
Administrator

Joined: 14 Feb 2003
Posts: 11945
Location: Harbinger, NC, U.S.A.
|
Posted: Mon Feb 25, 2008 1:27 pm Post subject: |
|
|
|
|
|
|
 |
|