* Addressbook: Inform the user about number of contacts adding to mail compose dialog via Email action

This commit is contained in:
Hadi Nategh 2018-06-07 14:45:42 +02:00
parent 6708ccb043
commit ce52dd10ad
2 changed files with 22 additions and 0 deletions

View File

@ -790,6 +790,16 @@ app.classes.addressbook = AppJS.extend(
content.vcard.type.push("text/vcard; charset="+(egw.preference('vcard_charset', 'addressbook') || 'utf-8'));
}
egw.openWithinWindow("mail", "setCompose", content, link, /mail.mail_compose.compose/);
for (var index in content)
{
if (content[index].file.length > 0)
{
egw.message(egw.lang('%1 contact(s) added as %2', content[index].file.length, egw.lang(index)));
return;
}
}
},
/**

View File

@ -63,6 +63,18 @@ egw.extend('open', egw.MODULE_WND_LOCAL, function(_egw, _wnd)
uri = uri.replace(/</g,'&lt;').replace(/>/g,'&gt;');
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 {
/**