Change a value in an email
add_filter(‘frm_email_value’, ‘frm_email_val’, 15, 3); function frm_email_val($value, $meta, $entry){ if($meta->field_id == 25){ //change 25 to the ID of your field $value = “My custom email content”; //change the value here } return $value; }Continue reading