[ad_1]
Hello @infraroth
The plugin allows you to fill controls in the form with information stored in data sources, like a database, CSV file, JSON structures, and others.
For example, if you want to fill in a dropdown field with the users’ names as its choices texts and their emails as the choices’ values, you can enter the following tags on your form:
<label> Users list
[select users-emails] </label>
<template id="user_name">{attribute.first_name} {attribute.last_name}</template>
[cf7-recordset id="users-records" type="user" attributes="user_email, first_name, last_name"]
[cf7-link-field recordset="users-records" field="users-emails" value="user_email" text="{template.user_name}"]Best regards.
