Does anyone know how to format line 3 of this, I pulled the rest from another forum post, but I am pretty terrible with php and couldn't get that line to work right:
add_filter( 'gform_notification_email_X', 'route_notification', 10, 2 );
function route_notification($email_to, $entry) {
$post->2;
$email_to = types_render_field("email", array("raw"=>"false")));
return $email_to;
}
To clarify I am trying to pull a custom field (email) from a custom post type profile page in to the notification email box.