great-oil-15113
02/06/2023, 12:52 AM<html>
<button id="email">Email</button>
<script>
document.querySelector('#email').addEventListener('click', () => {
window.location.href = 'mailto:?subject=XXXXXX&body=YYYYYYlink:%20https:/localhost:12345/id'
})
</script>
</html>
I don't want the email client to open and need to verify the content of the email when click the button. Is there a way to do that?
Thanks