• Resolved mamabird31

    (@mamabird31)


    I’m trying to set up a post-submit email. My form has 1 email address field (memberEmail) which is pre-populated with the logged in user’s email and it’s read only. I want to send an email to the person who just registered (at memberEmail), but in the Email Builder screen, when I click on “To email address(es)” the only field option I’m given is “Payment Options” which is a dropdown menu item.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter mamabird31

    (@mamabird31)

    I figured out what is happening. My forms requires the user to be logged in. The name and email address fields are read only and displays their logged in information. However, the email field has to be set up as a text input field in order to tell it readonly. Because it’s a text field, it won’t let me select it in the Email Builder box. I tried creating an email field with the same default value but then hide it using conditional logic, but because it’s hidden the field value is not passed on. So I have 2 requests…

    1. Please add “read only” as an option to the email input field so that it becomes greyed out like the text input fields when they are read only.

    2. Please add a field type of Hidden so that we can pass values on without having to create conditionally hidden text input fields

    Thanks!

    Plugin Author EDGARROJAS

    (@edgarrojas)

    Hello!

    Got it. sorry for that. A Hidden field is in the todo list =). I am in the process of adding tables and repeaters to the plugin so i won’t be able to add a hidden field shortly =S.

    Could you try to hide it with css please?, something like this in your css tab:

    #rnField6{
    display:none;
    }

    Change rnfield6 for your field id. Hiding it with css should not block the field from being send in the request.

    Regards!

    Thread Starter mamabird31

    (@mamabird31)

    I added the following to my CSS:

    #emailHidden, {
    display:none;
    }

    and as you described, it’s not displaying on my form. I now see emailHidden in the Email Builder which I selected for the TO field. Upon submit I am not getting the email (although I’m getting the secondary admin email) and when I check the entries table there is nothing in the emailHidden field. So it’s still not sending it through.

    Plugin Author EDGARROJAS

    (@edgarrojas)

    Mmm weird, did you removed the conditional logic that previously was hiding the field. And if you did could you send me a link to your form? (the link that you sent seems to be available only to logged in users).

    If you want to keep this information private you can create a support ticket at smartforms.uservoice.com

    Regards!

    Thread Starter mamabird31

    (@mamabird31)

    I just submitted a ticket…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Email field not populating “To email address”’ is closed to new replies.