De hecho, existe la posibilidad de evitar la página en blanco.
Descubrí que simplemente puede insertar un iframe con el enlace mailto en el dom. Esto funciona en Firefox / Chrome e IE actuales (también IE mostrará un breve cuadro de diálogo de confirmación).
Usando jQuery, obtuve esto:
var initMailtoButton = function()
{
var iframe = $('<iframe id="mailtoFrame" src="mailto:name@domain.com" width="1" height="1" border="0" frameborder="0"></iframe>');
var button = $('#mailtoMessageSend');
if (button.length > 0) {
button.click(function(){
$('body').append(iframe);
window.setTimeout(function(){
iframe.remove();
}, 500);
});
}
}