Support

Account

Home Forums General Issues How to show the fields of AСF in email? Reply To: How to show the fields of AСF in email?

  • I think the problem is your use of single quotes where there should be double quotes:

    get_field( 'user_phone', 'user_{$user_id}' )

    Should be

    get_field( 'user_phone', "user_{$user_id}" )

    I’ve left an answer on your post.