• At the moment I’m using two plugins Chimy Extra Fields to add more fields on the reg form and I’m using New User Approve to approve/deny the user acc.

    Only problem is on the send message to admin it only put the username field in. I need it to send the extra fields i added in chimy.

    I tried $message .= “{cimy_uef_COMPANY}\n\n”; which is a COMPANY field but it didn’t seem to work. Is there a way I can make it send all the form field data to my email.

    This is what the send to admin part looks like in ‘New User Approve’ how can i add the other data fields to this send form?

    Great plugin btw!

    function nua_default_notification_message() {
    	$message = __( '{username} ({user_email}) has requested a username at {sitename}', 'new-user-approve' ) . "\n\n";
    	$message .= "{site_url}\n\n";
    	$message .= __( 'To approve or deny this user access to {sitename} go to', 'new-user-approve' ) . "\n\n";
    	$message .= "{admin_approve_url}\n\n";
    
    	$message = apply_filters( 'new_user_approve_notification_message_default', $message );
    
    	return $message;
    }

  • The topic ‘Pulling Form Field Data into Post Msg’ is closed to new replies.