Title: ACF Forms
Last modified: July 27, 2022

---

# ACF Forms

 *  Resolved [monagraphic](https://wordpress.org/support/users/monagraphic/)
 * (@monagraphic)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/acf-forms/)
 * Hello,
 * I created a form with ACF Extended from fields groups.
    In my fields, i have 
   a “select” with “value:label” like :
 * [email1@example.com](https://wordpress.org/support/topic/acf-forms/email1@example.com?output_format=md):
   Support
    [email2@example.com](https://wordpress.org/support/topic/acf-forms/email2@example.com?output_format=md):
   Manager etc..
 * In my email action, i would like to add inside “To” field, my “value” (not the
   label) to send email to specific recipient.
 * Any one have idea ?
 * Thanks.
    -  This topic was modified 3 years, 10 months ago by [monagraphic](https://wordpress.org/support/users/monagraphic/).
    -  This topic was modified 3 years, 10 months ago by [monagraphic](https://wordpress.org/support/users/monagraphic/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/acf-forms/#post-15936204)
 * Hello,
 * Thanks for the feedback!
 * Unfortunately you can’t do that from the UI, since Template Tags are programmed
   to display “readable” values (ie: the label). In order to use the select value,
   you’ll have to use the `acfe/form/submit/email_args` ([See documentation](https://www.acf-extended.com/features/modules/dynamic-forms/e-mail-action#e-mail-arguments))
   in order to force the value of your choice.
 * Usage example:
 *     ```
       add_filter('acfe/form/submit/email_args/form=my-form', 'my_form_email_args', 10, 3);
       function my_form_email_args($args, $form, $action){
   
           // retrieve my_select value
           $my_select = get_field('my_select');
   
           // set the value as destination
           $args['to'] = $my_select;
   
           // return
           return $args;
   
       }
       ```
   
 * Hope it helps!
 * Have a nice day!
 * Regards.
 *  Thread Starter [monagraphic](https://wordpress.org/support/users/monagraphic/)
 * (@monagraphic)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/acf-forms/#post-15937329)
 * Hello Konrad,
    It works, thanks a lot 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘ACF Forms’ is closed to new replies.

 * ![](https://ps.w.org/acf-extended/assets/icon-256x256.png?rev=2071550)
 * [Advanced Custom Fields: Extended](https://wordpress.org/plugins/acf-extended/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/acf-extended/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/acf-extended/)
 * [Active Topics](https://wordpress.org/support/plugin/acf-extended/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/acf-extended/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/acf-extended/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [monagraphic](https://wordpress.org/support/users/monagraphic/)
 * Last activity: [3 years, 9 months ago](https://wordpress.org/support/topic/acf-forms/#post-15937329)
 * Status: resolved