Yes, I know event for each account can be managed easily, but we have no plan to add such feature for the current version, and for your requirement, I will provide you another good solution:
1. Put the email address into "User -> Notes -> Email address" for the user account who want to be notified.
2. Add the following Lua script into the event "OnFileUploaded":
- Code: Select all
local user = c_GetUser("%Domain","%Name")
local user_email = user.note_email
if user_email ~= nil and user_email ~= "" then
c_SendMail(user_email,"a file has been uploaded","%Name uploaded into %PathName","","SMTP_CONFIG")
end