Possible Duplicate:
Java mailto to MIME
I've been looking for a Java mailto parser to no avail. There is mailTo.java which is perfect but requires Android SDK which I would rather not pull into this project (but may consider if that's the best I can find).
Similar to mailto in Java? but cannot use Desktop as this is a web app. Also similar to Parsing query strings on Android but 1) am looking more specifically for mailto solution. Apache's URLEncodedUtils
is not a solution because mailto is opaque and while I was satisfied with hacking out the prefix to get the query arguments using this method, it has no knowledge of how to parse the to, cc, etc. parts rendering it incomplete.