Now a days people are busy. We don't want to use multiple applications.We want every thing on emails.
For example: Forum Questions.
Employees can log into Forum application and they can reply but employees are happy if they get forum questions via email and they are happy to give reply via email.
Higher management want every thing in email like weekly status, monthly status, daily discussions...etc
Of course we use rules/filters to move emails to separate folders
After some years will have lot of emails. If we want generate some analytics based on a component or a word. Rollbase can help you.
Rollbase is a platform as a service (PaaS) software solution. You can get rapid application development in the cloud, with minimal coding. Build, deploy and manage cloud-based applications with a single tool designed to get you up and productive fast.
Rollbase provides API to read emails. You can write your own logic in JavaScript
http://documentation.progress.com/output/Rollbase/index.html#page/rb/email-api.html
Example
rbv_api.openPOP3("mail.mydomain.com", 995, "address@mydomain.com", password, null);
var arr = rbv_api.getMailMessages(100, 110);
for (var k=0; k<arr.length; k++) {
var m = arr[k];
rbv_api.println(m.get('subject'));
}
rbv_api.closeMailSession();
var arr = rbv_api.getMailMessages(100, 110);
for (var k=0; k<arr.length; k++) {
var m = arr[k];
rbv_api.println(m.get('subject'));
}
rbv_api.closeMailSession();
After writing logic to filter out emails using Rollbase other APIs you can create records in Rollbase system. Once you get data in Rollbase then you can utilize Rollbase features like Charts, Reports.
You can use batch jobs to run your logic daily and get live email analytics
Finally you can get analyzed report as a email
Shiftmail
ReplyDeleteEmail analytics made simple. shiftmail provides a REST API and web interface for intelligence gathering with email marketing.
http://shiftmail.blogspot.rs/2016/08/go-distance-with-right-emailing-options.html