• Resolved thoseguys26

    (@thoseguys26)


    I am getting a syntax error for the additional headers area, yet it still works as intended.

    This is what I have: Reply-To:[your-email]

    I read over all of the related docs and couldn’t find anything specific to this.

    Thank you everyone for the great plugin!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi, thoseguys26, I’m another CF7 user.

    Try clearing the existing mail headers data, save the form, and then reenter the data again to see if that resolves it, saving it once more again.

    Thread Starter thoseguys26

    (@thoseguys26)

    Thanks Ian for the reply. I did try that just now with no luck.
    I decided to start a new form and used the same exact info, and the error is gone.
    Thanks again for the suggestion!

    Christine

    (@christineferguson)

    I’m having this same issue on all 5 forms on my site. I hate the idea of rebuilding them, but I guess I’ll try it.

    Christine

    (@christineferguson)

    Well, I jut tried rebuilding one and before I saved it I did not have a configuration error, but after saving the message came back.

    Thread Starter thoseguys26

    (@thoseguys26)

    @christineferguson

    My solution for this ended up being bad code in the ‘Form’ tab, not the ‘Mail’ tab. Once I changed my ‘Form’ tab code, the error in the ‘Mail’ tab disapeared.

    I basically replaced <label> with <p>

    This is the bad code:

    <label> Your name
    [text your-name] </label>

    <label> Your email
    [email your-email] </label>

    <label> Subject
    [text your-subject] </label>

    <label> Your message (optional)
    [textarea your-message] </label>

    [submit “Submit”]

    This is the good/replacement code:

    <p>Your Name (required)<br />
    [text* your-name] </p>

    <p>Your Email (required)<br />
    [email* your-email] </p>

    <p>Subject<br />
    [text your-subject] </p>

    <p>Your Message<br />
    [textarea your-message] </p>

    <p>[submit “Send”]</p>

    Hope that works for you ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Invalid Mail header Question’ is closed to new replies.