• Resolved treborcram

    (@treborcram)


    I have SMTP setup for the form submissions to be sent to me and my colleagues.

    However, we had an issue with our SMTP service (something on our end–not Forminator’s issue) and submissions didn’t get sent for about two days.

    Is there a way to get a listing of those submissions that occurred within a set time period across ALL forms? I know I can get a report, and/or see the submissions for each form individually but we have quite a lot of forms and I have no idea which ones might have been used in those two days.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @treborcram

    I hope you are doing well.

    Unfortunately, it isn’t possible to filter based on this as we don’t track issues to implement a flag that could be used for it, a solution would be resending all submissions, you can do it by clicking on the right button > inspect, switching to browser console copy and past this JS script:

    var items = jQuery('.forminator-resend-notification-email');
    var count = 1;
    jQuery.each(items, function(item) {
      setTimeout(function() {
         jQuery(item).click();
         console.log("ok");
      }, count * 1000);
      count++;
    });

    https://monosnap.com/file/sQBh6kOXxlCMY8HqOn6R3rjrqBjklk

    Best Regards
    Patrick Freitas

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @treborcram ,

    We haven’t heard from you for some time now, so it looks like you don’t require our further assistance.

    Feel free to re-open this ticket if needed.

    Kind regards
    Kasia

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Finding all “unsent” submissions’ is closed to new replies.