kensington43
Technical User
Any way to write something to find out if local Mailto has been disabled?
Currently if the local OS has been disabled from sending mail for Outlook I get an error message from the OS saying "could not perform this command" after clicking on the mailto link.
I want to put my own message out there saying "This Mail tag has been disabled".
Please advise:
Currently if the local OS has been disabled from sending mail for Outlook I get an error message from the OS saying "could not perform this command" after clicking on the mailto link.
I want to put my own message out there saying "This Mail tag has been disabled".
Please advise:
Code:
function checker(myCheck){
//not sure how to check if the mailto tag worked here
alert("This Mail tag has been disabled");
}
<a href="mailto:jones@here.com" onClick="return checker(this)">Link</a>