Hi,
I am actually using something more easier: a Javascript function put for onClick:
function show_e(domain, user)
{
newWindow = window.open('mail' + 'to:' + user + "@" + domain , '', 'height=600,width=600,scrollbars=yes,resizable=yes ');
if (document.images) newWindow.focus();
}
There is however a small problem when clicking on link. On some browsers is opened also a new browser window, not just email client...
|