How do I set a proper name for the recipient when in HTML I want to use the \"mailto\" tag.
Something like:
mailto:\"John Wayne(jw@email.com)?subject
Try this: mailto:%22John%20Wayne%22%3cjw@email.com%3e?subject..
mailto:%22John%20Wayne%22%3cjw@email.com%3e?subject..
Wrap the name in %22 and the email has %3c before it and %3e after it and %20 for spaces
%22
%3c
%3e
%20
That will output: "John Wayne"
"John Wayne"
Full list of URL Encoding here: http://www.w3schools.com/tags/ref_urlencode.asp