Pulling Form Field Data into 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 the admin it only put the username field in. I need it to display a bunch of extra fields.
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.
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; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Pulling Form Field Data into Msg’ is closed to new replies.