Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorvhamblin
    • CommentTimeDec 27th 2010
     
    I'm trying to get the email notification to go to one address ALL the time, but also include an additional email address when a certain radio button is selected within the form.

    I attempted to use the following alias in the notification email field: @IF(%%tla_radiobuttonquestion%%=Answer One,"email one,email two","email one")

    This continues to give me an error email of #NA@www3.formassembly.com

    Is there an issue with the "" or maybe the spacing? Do radio button answers not allow this?

    Any help would be very appreciated.

    Vince
    • CommentAuthordbuschho
    • CommentTimeDec 28th 2010
     
    Hello,

    I think there are a few problems:

    @IF(%%tla_radiobuttonquestion%%=Answer One,"email one,email two","email one")

    should be something like:

    @IF(%%tfa_radiobuttonquestion%%="Answer One","email_one@domain.com,email_two@domain.com","email_one@domain.com")
    note the change from tla to tfa, and the quotes around 'Answer One'.

    If you're still having issues after the above advice, let us know by opening a support request. We're happy to help.

    FormAssembly Support.
    • CommentAuthorvhamblin
    • CommentTimeJan 5th 2011
     
    Worked perfectly. Thank you for the help.

    I think the issue was the "" around the required response in the IF formula.

    Again, thanks!