• I made a form with special fields in the notification. The reason is that I have to transfer the answers from the form into an offer system.
    Among other things, I wrote the following:
    ——

    <tr><td>Anfrage2:    </td><td><textarea cols="50" rows="8">{field_id="10"}
    {field_id="11"}</textarea></td></tr></table>

    ——
    Field 10 is the email address.
    Field 11 is the field “Unverbindliche Anfrage…”

    In the answer I get the following output:
    ——

    <a href="mailto:[email protected]">[email protected]</a><br />
    12 Meter Staketenzaun<br />
    inkl. Pf?hle<br />
    ev. 1 Tore je 1.5 Meter Breit

    ——
    what do I have to write so that the HTML tag is not written, but the result?, as shown in the following:
    ——

    [email protected]
    12 Meter Staketenzaun
    inkl. Pf?hle
    ev. 1 Tore je 1.5 Meter Breit

    ——
    Thank you for hints which lead to a “readable” representation.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @mawiti,

    Thanks for contacting us!

    It seems that you are using HTML textarea tag in the notification message. In case it helps to share, textarea is an input field, so using it within the notification message would result in display issues in the email. I had replicated the issue on my end, and when I removed the textarea the code is working fine.

    When you get a chance, please update the code with the following:

    <tr><td>Anfrage2: </td><td>{field_id="10"}
    {field_id="11"}</td></tr>

    When you have a moment, could you please give the above code a try and let me know how it goes?

    Thanks!

    Thread Starter Markus Winter

    (@mawiti)

    Hello, thanks for the answer.
    I need the HTML fields because I have to import the data into another program. This works “only” with input type text and textarea. If I omit the text fields, I can no longer import.
    So I ask how I can better format the text area.

    Hello @mawiti,

    I apologize, currently, we don’t have the feature that you are looking for in the text area field. I’ve made a note of the feature request and we’ll keep it on our radar as we plan out our roadmap for the future.

    Thank you for the suggestion!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘br and lf in the form answer’ is closed to new replies.