• Hello,
    I created HTML template which i send to my customers every time they submit form. I want to use form fields to display relevant information in the message.

    For example:

    <!DOCTYPE html>
    <html>
    <body>
      <h1>Hi %first_name%,</h1>
    </body>
    </html>

    On the email I will see: “Hi %first_name%,”. I would to replace %first_name% with customer name, but it only works after HTML tags or without them.

    Is there any method to solve this problem?

Viewing 1 replies (of 1 total)
  • Thread Starter wpostest

    (@wpostest)

    I found a solution:

    <!DOCTYPE html>
    <html>
    <body>
    <h1>
    Hi %first_name%,
    </h1>
    </body>
    </html>
Viewing 1 replies (of 1 total)
  • The topic ‘How to use form fields in HTML’ is closed to new replies.