User clicks link in email, it opens email client, how to close window/tab?
- by Blankman
A user clicks a link in their HTML email, it then goes to a page that simply opens up their email client.
window.location.href = 'mailto:...';
I don't want this window/tab to stay open, how can I close it?
window.close() doesn't work since it wasn't opened using window.open()
is it possible?