Hi everyone,
I'm trying to make a link in the HTML that Plucker parses to create an email of the form: --------------- To: [EMAIL PROTECTED] Subject: mySubject Body: key1=value1 key2=value2 key3=value3 --------------- I only seem to be able to generate the To: and Subject: lines, then the Body: is just one line. To try and make the above, I'd use; <a href=mailto:[EMAIL PROTECTED]?Subject=mySubject&Body=key1=value1%0akey2=value2%0akey3=value3>Click</a> I guess the point I'm interested in is what Plucker's email form uses for newlines. I've tried %0a, \n, \r and ^M, but both are just displayed as is. I've also noticed that the 'key=value' pairs are converted to 'key:value'.. Any ideas? Cheers, Tim

