Hello Jarek,
please visit http://piler.aaa.fu.acts.hu/ it's the demo site (only its
separated developer version not to interfere with the 'production' demo
site).
So, login as auditor@local, then hit the search button, and select a
message.
The you can see that the "restore message" link has been removed and a
select
form element has replaced it. I'd like you to take a look and decide
whether
this new concept is clear, easy to understand and unambiguous. If not
then
please help a little to improve it, what should I change, etc.
Note that the "Restore" button doesn't work yet. Currently I'm focusing
on the
gui, not the scripts under the hood.
Janos
On 2012-12-17 20:37, Serafin wrote:
Hello
There is a function 'Restore message to mailbox' while you choose
mail
on the search list in webui.
In this function recipient is being chosen as follows:
/* send the email to all the recipients of the original email if we
are
admin or auditor users */
if(Registry::get('admin_user') == 1 || Registry::get('auditor_user')
== 1) {
$rcpt =
$this->model_search_search->get_message_recipients($this->data['id']);
}
else {
array_push($rcpt, $_SESSION['email']);
}
would it be possible to give a choice to admin/auditor user to choose
where the mail is going to be send?
I see it as a form, where all recipients and sender are lister and
admin/auditor is able to check where to send the mail
I got this feature request from my customer I'm implementing
MailPiler to
Thanks,
Jarek