Skip to content

Instantly share code, notes, and snippets.

@andrewmilson
Last active August 29, 2015 14:07
Show Gist options
  • Save andrewmilson/d496f4b685843c660d2c to your computer and use it in GitHub Desktop.
Save andrewmilson/d496f4b685843c660d2c to your computer and use it in GitHub Desktop.
<a href="javascript:mailtoManager('example', 'example.com')">Contact</a>
(function(window) {
var link = document.createElement('a');
link.target = '_blank';
window.mailtoManager = function(local, domain) {
link.href = 'mailto:truck@thebots.com'
.replace('truck', local)
.replace('thebots.com', domain);
link.click();
}
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment