Community

Email notifications for indexing

Hi,

I have a barcode recognition project and defined scripts such that if the barcode reading is successful, the indexing is done automatically,
and if the barcode is not found properly according to defined condition, the document goes to manual indexing.
Is there any way to send a notification through email when a document goes to indexing?

Thanks,

Was this article helpful?

0 out of 0 found this helpful

Comments

3 comments

  • Avatar
    PhinkTad
    Hi Katja,

    Thanks for your response. I'll try to see if this can be implemented.
    On the other hand, I was thinking in terms of any possibility of sending email notifications from the smtp options configured on the recognition server.
    There is an option to notify if there are no jobs left in queue. Just wondering if this can be modified to be used for indexing as well.

    Thanks,
    1
  • Avatar
    Vladislav Suvorov
    Hello,

    Sadly FlexiCapture doesn't have built-in means to send e-mail notifications. However, you can always use script for that(I would recommend external library).

    Best regards,
    Vladislav
    0
  • Avatar
    Katja Ovcharova
    Dear PhinkTad,

    Unfortunately there is no built-in way to send mails at this stage. Nevertheless, scripting in RS allows using almost all default JScript functionalities. It can't send mails directly because it needs some mail server being specified. Script can send GET and POST requests to any server and the server then can send mails based on that request.
    This approach is described at http://stackoverflow.com/questions/2...ith-javascript.

    The following code sends GET request from script:
    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    xmlhttp.open('GET', 'YourGetRequestHere', true);
    xmlhttp.send();

    Hope this helps.
    0

Please sign in to leave a comment.