I’m trying to parse mailto URLs into a nice object or dictionary which includes subject, body, etc. I can’t seem to find a library or class that achieves this- Do you know of any?
mailto:me@mail.com?subject=mysubject&body=mybody
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Seems like you might just want to write your own function to do this.
Edit:
Here is a sample function (written by a python noob).
Edit 2, cleanup do to feedback: