• Resolved mikecrf121

    (@mikecrf121)


    Hello all,
    Im trying to develop a form where the user enters some text in an input field and is sent to the companies email.
    I need a time stamp of when the submission occurred to the millisecond. example 8:15.898 . and sent in the email as well!!

    can this be done an how??

    Thank you!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Zhanna Khachatryan

    (@zhannak)

    Hi @mikecrf121,

    Thanks for your inquiry.

    Dear user, you can easily create a form and forward the entries to any email/emails you want, for this you just need to enter the exact form, go to Email Options > Email to Administrator > email to and here write the email on which you want to get the submissions.

    As for the time stamp, we don’t have that functionality, but we have created a custom version for you.

    If you use the free version, then please download this custom version from this link and install, if you have the pro version then please write and we’ll send you another custom version.

    https://drive.google.com/file/d/1_QrPqfQilT80G_QjusyImzJIKg9HZaSz/view?usp=sharing

    Before installing this version, please deactivate and delete the free version then install this version. No data will be lost.

    Please keep me updated with results.

    Thread Starter mikecrf121

    (@mikecrf121)

    ok?? where is the custom version feature you mention???

    Thread Starter mikecrf121

    (@mikecrf121)

    I Really Appreciate It If this Works!! Just need a timestamp in the email to the millisecond. instructions on how to implement this please???

    Thank You!
    -Mike

    Thread Starter mikecrf121

    (@mikecrf121)

    This is the last thing i need to work on my site…
    thank you in advanced!!
    ive tried using the following code with no avail. i can set an alert to give me the correct time but cannot set an element in the form to get sent to the email with the value….

    The alert for ttlTime i belive gives me the correct time to the millisecond.. where im struggling is getting that value into the email sent on submission… or inserted into a form field.. like a hidden one… cant figure it out…

    thank you!!

    // Occurs just before submitting the form
    function before_submit() {

    alert(“test”);
    var d = new Date();
    var x = document.getElementById(“demo”);
    var h = addZero(d.getHours(), 2);
    var m = addZero(d.getMinutes(), 2);
    var s = addZero(d.getSeconds(), 2);
    var ms = addZero(d.getMilliseconds(), 3);
    var ttlTime = h + “:” + m + “:” + s + “:” + ms;
    x.value = ttlTime;
    var toy = document.getElementsByClassName(“demo”);
    toy.value = ttlTime;
    alert(ttlTime);

    function addZero(x,n) {
    while (x.toString().length < n) {
    x = “0” + x;
    }
    return x;
    }

    }

    Plugin Support Zhanna Khachatryan

    (@zhannak)

    Dear Mike,

    The custom version I have sent in my above message.

    https://drive.google.com/file/d/1_QrPqfQilT80G_QjusyImzJIKg9HZaSz/view?usp=sharing

    Please download it from this link and install. Before installing this version, please deactivate and delete the free version then install this version. No data will be lost.

    You don’t need to change any settings, it should stamp milliseconds in the email by default.

    If it doesn’t work as required please send me the screenshot of the email to see how it displays time in custom text.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘plugin question’ is closed to new replies.