• Resolved dreamit99

    (@dreamit99)


    Hi there,

    I’m currently working on a fluent form where users make selections, and I’m looking on how to incorporate these selections into notification emails as clickable links.

    Could you please provide guidance on how to achieve this? I’m looking to ensure that the selections made by users in the form are dynamically included as clickable links in the email notifications.

    Example:

    abc.com&frequency_id={inputs.dropdown}&selection_parameter[1]={inputs.dropdown_2}

    at the moment what i get is abc.com&frequncy_id=selection1value&selection_parameter[1]=selection2value

    instead of

    abc.com&frequncy_id=3&selection_parameter[1]=5

    Hope there solutions for this.

Viewing 1 replies (of 1 total)
  • Plugin Support Abul Khoyer

    (@hellokhoyer)

    Hi @dreamit99,

    Thanks for your query. Fluent Forms includes option labels in email notifications by default. If you want to include option values instead, add “.value” alongside the name attribute, as shown below:

    //option label
    {inputs.dropdown}

    //option value
    {inputs.dropdown.value}

    If you want to put the value/label in the URL parameter as a working link. Simply insert it inside the anchor by selecting the link text. (see screenshot)

    Hope this helps.

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘How to add query string into the confirmation email?’ is closed to new replies.