mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 15:25:09 +02:00
* Addressbook: Inform the user about number of contacts adding to mail compose dialog via Email action
This commit is contained in:
@ -63,6 +63,18 @@ egw.extend('open', egw.MODULE_WND_LOCAL, function(_egw, _wnd)
|
||||
uri = uri.replace(/</g,'<').replace(/>/g,'>');
|
||||
|
||||
egw.openWithinWindow ("mail", "setCompose", content, {'preset[mailto]':uri}, /mail_compose.compose/);
|
||||
|
||||
|
||||
for (var index in content)
|
||||
{
|
||||
if (content[index].length > 0)
|
||||
{
|
||||
var cLen = content[index].split(',');
|
||||
egw.message(egw.lang('%1 email(s) added into %2', cLen.length, egw.lang(index)));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return {
|
||||
/**
|
||||
|
Reference in New Issue
Block a user