Hi gitladen7, I just found your very useful extension and I wonder if you have any plans to incorporate the "body" tag for mailto links.
For example
mailto:test@example.com?subject=this%20is%20a%20subject&body=test
Currently the extension seems to ignore the body tag.
My intended result is for this bookmarklet to copy the title into the subject and the URL to the body.
javascript:void(window.open("mailto:example@xyz.com?subject=" + encodeURIComponent(document.title) + "&body=" + encodeURIComponent(document.location)));
Hi gitladen7, I just found your very useful extension and I wonder if you have any plans to incorporate the "body" tag for mailto links.
For example
mailto:test@example.com?subject=this%20is%20a%20subject&body=testCurrently the extension seems to ignore the body tag.
My intended result is for this bookmarklet to copy the title into the subject and the URL to the body.
javascript:void(window.open("mailto:example@xyz.com?subject=" + encodeURIComponent(document.title) + "&body=" + encodeURIComponent(document.location)));