Question

Photo of Renee Widdig

0

Custom Questions from Event Registrations to Confirmation Emails

Hello!

I have a non-developer support role with our current database and we haven't launched ROCK yet - learning the basics of building Event Registrations as we speak. We have a question related to a Family Dedication event that we're hoping someone can help with:

Can the answer to a custom question asked in the registration be inserted into the Confirmation email? (i.e. "Which Family Dedication service will you be participating in?" - their answer would be placed into the Confirmation as a reminder of the service time they requested)

Thanks for any assistance!

 

  • Photo of Chuck Bump

    0

    You can actually use lava to output the value of any registration attribute in the email template.  For example, I created a registration attribute on a form called "TestAttribute".  When someone is registering for an event, they'll fill out that value which is then accessible in the lava like this:

    <ul>
    {% for registrant in Registration.Registrants %}
        <li>
            <strong>{{ registrant.PersonAlias.Person.FullName }}</strong> - {{ registrant | Attribute:'TestAttribute' }}
        </li>
    {% endfor %}
    </ul>