So I have function like this which is called on button
click:
function sendEmail() {
var subject = 'test subject';
var href = window.location.origin + window.location.pathname;
var body = 'test body: ' + href;
window.location.href = 'mailto:?subject=' + subject + '&body=' + body;
}
Is it possible to save this href
in email body as a real link not as a string
??
Thanks for any suggestions.