How to make Advanced Forms (and/or ACF) encode input value?
I believe you need the af/email/before_send hook. I found this solution here: https://gist.github.com/mishterk/70bb486baac349c29b684346b77826ce Rather than permanently modifying the email saved with the form entry, you can simply modify the message field to encode the email. For example: <?php // Set the form key you wish to target $form_key = ‘form_5d97cf9edc0a8’; add_action( “af/email/before_send/key=$form_key”, function ( $email, … Read more