Yes, add the following as a hyperlink on your button:
javascript:window.open('mailto:?subject=Check%20this%20out&body=' + location.href ,'_blank');
Note that the text has to be "escaped" (e.g., "%20" instead of a space).
location.href is what generates the URL to the current page.