Title: Pulling Form Field Data into Post Msg
Last modified: August 22, 2016

---

# Pulling Form Field Data into Post Msg

 *  [t2tw](https://wordpress.org/support/users/t2tw/)
 * (@t2tw)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/pulling-form-field-data-into-post-msg/)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/cimy-user-extra-fields_dae8f3.svg)
 * [Cimy User Extra Fields](https://wordpress.org/plugins/cimy-user-extra-fields/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/cimy-user-extra-fields/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/cimy-user-extra-fields/)
 * [Active Topics](https://wordpress.org/support/plugin/cimy-user-extra-fields/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cimy-user-extra-fields/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cimy-user-extra-fields/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [t2tw](https://wordpress.org/support/users/t2tw/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/pulling-form-field-data-into-post-msg/)
 * Status: not resolved